
<!--
//快速搜索
  function checkQuickSearchFrm(theFrm)
  {
  	var strAlert;	
        if(theFrm.brandId.value== 0 && theFrm.productName.value== "")
		{        	
		strAlert = "请选择品牌名称或输入搜索关键字！";
		alert(strAlert); 
		theFrm.productName.focus();
		return false;
	} 	
         return true;   			
    }


//登录表单
	function checkLoginFrm(theFrm)
  {
  	var strAlert;	
        if(theFrm.username.value== "" || theFrm.password.value== "")
		{        	
		strAlert = "请输入您的用户名和密码！";
		alert(strAlert); 
		theFrm.username.focus();
		return false;
	} 	
         return true;   			
    }
    
  
  //邮局入口 
function check(i){
	if(i.MailBox.options.selectedIndex==0){
	alert("提示：请正确选择你使用的邮箱");
	return false;}
	if(i.Username.value==""){
	alert("提示：邮箱用户名必须填写！");
	i.Username.focus();
	return false;}
	if(i.Password.value=="" || i.Password.value.length<3){
	alert("提示：邮箱密码必须填写完整！");
	i.Password.focus();
	return false;}
}

function CP(input){input.Password.value="";}

//加入收藏
function AddFavorite()
{
	window.external.AddFavorite('http://www.kuny.com.cn','上海昆一电子资源有限公司');
}

function openwin(url){
	var newWin;
	newWin = window.open(  url , "上海昆一电子资源有限公司", "height=600 ,width=780 ,resizable=yes ,toolbars=no, scrollbars=yes, menubar=no, location=no");
	newWin.focus();
}

//-->
