function CheckAddInfo()
{
	var contact,num,mobile,tel,email,content,company
	contact=document.getElementById("contact");
	num=document.getElementById("num");
	mobile=document.getElementById("mobile");
	tel=document.getElementById("tel");
	content=document.getElementById("content");
	if (contact.value=="")
	{
	  alert("请输入联系人！")
	  contact.focus()
	  return false
	 }
	 
	if (num.value=="")
	{
	  alert("请输入需求数量！")
	  num.focus()
	  return false
	}
	
	if (mobile.value=="" && tel.value=="")
	{
	  alert("联系手机和电话至少填一项！")
	  mobile.focus()
	  return false
	}
	
	if (content.value=="")
	{
	  alert("请输入留言内容！")
	  content.focus()
	  return false
	}
	return true;
}
function Click(){ 
alert('版权所有(C)2005  中国电器商城!'); 
window.event.returnValue=false;
} 
document.oncontextmenu=Click; 


