var showtimeout = 0;
var showtimeoutset = 0;

function checkWelpenBox(){
	if (!(!document.getElementById("footer_copyrightLabel")) || !(!document.getElementById("footerControl_copyrightLabel"))){
		
		if (!(!document.getElementById('Welpenbox'))){
			/*alert('Pedigree Test');*/
				document.getElementById('Welpenbox').src+="?ZG="+location.href.split("ZG=")[1];
		}
	}
	else
		setTimeout("checkWelpenBox()",100);
}
checkWelpenBox();

function ChangePicture(URL,ID)
{
	  if (ID=="headerControl_topnavigationControl_navigationRepeater_ctl06_navImage"){
      if (document.getElementById("headerControl_topnavigationControl_navigationRepeater_ctl05_navImage").src.indexOf("/fr/")!=-1)
            document.getElementById("headerControl_topnavigationControl_navigationRepeater_ctl06_navLink").href="http://www.pedigreeshop.ch/shopfr/start.asp";
      else
            document.getElementById("headerControl_topnavigationControl_navigationRepeater_ctl06_navLink").href="http://www.pedigreeshop.ch/shop/start.asp";
      document.getElementById("headerControl_topnavigationControl_navigationRepeater_ctl06_navLink").target="_blank";

    }
    else if (ID=="headerControl_topnavigationControl_navigationRepeater_ctl00_navImage"){
      if (document.getElementById("headerControl_topnavigationControl_navigationRepeater_ctl05_navImage").src.indexOf("/fr/")!=-1)
            document.getElementById("headerControl_topnavigationControl_navigationRepeater_ctl00_navLink").href="http://moisdessoinsdentaires.ch";
      else
            document.getElementById("headerControl_topnavigationControl_navigationRepeater_ctl00_navLink").href="http://www.zahnpflegemonat.ch";
      document.getElementById("headerControl_topnavigationControl_navigationRepeater_ctl00_navLink").target="_blank";

    }
		else

		{
	
	    var image = document.getElementById(ID);
  	  if(image != undefined)
    	{
      	  image.src = URL;
    	}
		}
}

/*function Show(ID)
{
    if(showtimeoutset == 0)
    {
        showtimeout = setTimeout("ShowArea('" + ID + "');", 300);
        showtimeoutset = 1;
    }
}*/
function Show(ID)
{
    if (ID=="navigationRepeater_ctl06_areaDiv"){
      if (document.getElementById("navigationRepeater_ctl05_navImage").src.indexOf("/fr/")!=-1)
            document.getElementById("navigationRepeater_ctl06_navLink").href="http://www.pedigreeshop.ch/shopfr/start.asp";
      else
            document.getElementById("navigationRepeater_ctl06_navLink").href="http://www.pedigreeshop.ch/shop/start.asp";
      document.getElementById("navigationRepeater_ctl06_navLink").target="_blank";

    }
		else if (ID=="navigationRepeater_ctl00_areaDiv"){
      if (document.getElementById("navigationRepeater_ctl05_navImage").src.indexOf("/fr/")!=-1)
            document.getElementById("navigationRepeater_ctl00_navLink").href="http://moisdessoinsdentaires.ch";
      else
            document.getElementById("navigationRepeater_ctl00_navLink").href="http://www.zahnpflegemonat.ch";
      document.getElementById("navigationRepeater_ctl00_navLink").target="_blank";

    }
    else {
        if(showtimeoutset == 0)
        {
            showtimeout = setTimeout("ShowArea('" + ID + "');", 300);
            showtimeoutset = 1;
        }
    }
}

function Hide(ID)
{
    if(showtimeoutset == 1) 
    {
        clearTimeout(showtimeout);
        showtimeoutset = 0;
    }
    var div = document.getElementById(ID);
    if(div != undefined)
    {
        div.style.display = 'none';
    }    
    document.getElementById("promoareaDiv").style.visibility = "visible";
}

function ShowArea(ID)
{   
    var div = document.getElementById(ID);
    if(div != undefined)
    {
        div.style.display = 'block';
    }
    
    document.getElementById("promoareaDiv").style.visibility = "hidden";
}