
       function Click(link)
        {
         window.location= link ;  
        }
		function Click1(link)
        {
		 var newWindow = window.open(link, '_blank');
		 newWindow.focus();
		 newWindow.resizeTo(screen.availWidth,screen.availHeight);
        }
        function MouseOver(obj)
        {
          var id = obj.id;
          var idarr = new Array();
          idarr = id.split("_");
          
          // Disable previous selected
          var hdnval = document.getElementById("hdnMenu").value;
		 // alert(hdnval);
          if(hdnval != 0)
          {
			  //alert("one");
             document.getElementById("Menu_" + hdnval).className = "normal";
			 //alert(document.getElementById("SubMenu_" + hdnval).value());
			document.getElementById("SubMenu_" + hdnval).style.display = "none"; 
          }
          // Enable current Menu
		  //alert("two");
          obj.className = "hover";
         // if(hdnval != 0)
			  document.getElementById("SubMenu_" + idarr[1]).style.display = "block"; 
          document.getElementById("hdnMenu").setAttribute("value",idarr[1]);
        }
				
		function MouseOut(obj)
        {
          //document.getElementById("Menu_" + hdnval).className = "normal";
		  //obj.className = "normal";
          //var id = obj.id;
          //var idarr = new Array();
          //idarr = id.split("_");
          //document.getElementById("SubMenu_" + idarr[1]).style.display = "none"; 
        }
        
        function MouseOverSub(obj)
        {
          obj.className = "subhover";
        }
        function MouseOutSub(obj)
        {
          obj.className = "subnormal";
		 
        }
		
		function MouseOutSub2(obj)
        {
		  var id = obj.id;
          var idarr = new Array();
          idarr = id.split("_");
          
          var hdnval = document.getElementById("hdnMenu").value;
		  if(hdnval != 0)
          {
			 document.getElementById("SubMenu_" + hdnval).style.display = "none"; 
          }
          document.getElementById("hdnMenu").setAttribute("value",idarr[1]);
		}
		
        function ClickSub(link)
        {
         window.location = link ;
        }

function openWin( )
		{
			mywindow=window.open('emailtofriends.asp', 'mywindow', 'width=600,height=550,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=0,resizable=0' );
			//window.open( windowURL, windowName, windowFeatures );
			mywindow.moveTo(200,110);

			return false;
		}
function openFeed( )
		{
		mywindow=window.open('customer_feedback.asp', 'mywindow', 'width=380,height=420,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=0,resizable=0' );
			//window.open( windowURL, windowName, windowFeatures );
			mywindow.moveTo(300,300);

			return false;
		}