function CheckForm()
{
if (document.order.proname.selectedIndex =="0" ) {
	alert("请选择需要购买的产品!");
	return false;
}
if(document.order.Num.value == "") {
	alert("请填写商品订购数量！");
	document.order.Num.focus();
	return false;
}
else {
	if(isNaN(document.order.Num.value)) {
		alert("商品数量只能填写数字！");
		document.order.Num.focus();
		return false;
	}
	if(document.order.Num.value == "0") {
		alert("商品数量必须大于0！");
		document.order.Num.focus();
		return false;
	}
}
if (document.order.Name.value.length < 2) {
	alert("请检查您输入的收货人姓名");
	document.order.Name.focus();
	return false;
}
if (document.order.Address.value.length < 4) {
	alert("请检查您输入的收货地址");
	document.order.Address.focus();
	return false;
}
if (document.order.zipcode.value.length < 4) {
	alert("请检查您输入的邮政编码");
	document.order.zipcode.focus();
	return false;
}
if(isNaN(document.order.zipcode.value)) {
	alert("请检查您输入的邮政编码");
	document.order.zipcode.focus();
	return false;
}
if (document.order.Mobile.value.length < 6 || document.order.Mobile.value.length > 15) {
	alert("请检查您输入的移动电话");
	document.order.Mobile.focus();
	return false;
}

return true;
}
