function switcherShow() 
{ 
      var switchDiv=$("switchstyle");
   
      var switcher=$("switcher");
      if(switcher.value==0)
      {
      	switchDiv.style.display = "block";
      	switcher.value=1;
      	
      }
      else
      {
     	switchDiv.style.display = "none";
      	switcher.value=0;
      	
      }
      
}
function switcherHide() 
{
	poppDiv=$("switchstyle");
	if(poppDiv)
	{
		poppDiv.style.display="none";
		
		
	}
}
