function showpromenu()
{
	if(document.getElementById("productlb").style.display=="block")
	{
		document.getElementById("productlb").style.display="none";
	}
	else
	{
		document.getElementById("productlb").style.display="block";
		document.getElementById("showemail").style.display="none";
	}
	
}

function showEmailmenu()
{

		document.getElementById("showemail").style.display="block";
	
	
}


function selectpro(prpid,text)
{
	document.getElementById("proid").value=prpid;
	document.getElementById("productlb").style.display="none";
	document.getElementById("searchnr").innerHTML=text;
	
}
  
    function copyToClipBoard(){   
         var clipBoardContent="";   
         clipBoardContent+=document.title;   
         clipBoardContent+="\n";   
         clipBoardContent+=this.location.href; //获取地址   
         window.clipboardData.setData("Text",clipBoardContent);   
         alert("地址复制成功");   
    }   

function searchpro()
{
	
	var proid=document.getElementById("proid").value;
	if(proid!="")
	{
	window.location.href="cqproduct.aspx?classid="+proid;
	}
}

function sendmail()
{ 
       var mail=document.getElementById("email").value;
       if(mail=="" || mail=="请输入邮件地址")
       {
       alert("请输入邮件地址");
       }
       else
       {
       ajax("savemail.aspx?murl="+mail,"sandm");
       }
}



	 function enter4search(e)
  {
        if(navigator.appName == "Microsoft Internet Explorer")
　　    {
　　      　　    　　var keycode = event.keyCode;   
　　      　　    　　if(keycode==13)
　　      　　    　　{
　　      　　    　searchpro();
　　      　　    　　}
　　    }
　　    else
　　    {
　　      　　    var keycode = e.which;  
　　      　　    　if(keycode==13)
　　      　　    　　{
　　      　　    　　searchpro();
　　      　　    　　}
　　      　　     
　　    }
　　      　　    　　    
  }
  document.onkeydown= enter4search; 
