		function chkOrdNo()
		{
			if(orderstatus.orderno.value=="")
			{
				window.alert("Please enter your Order Number!");
				document.orderstatus.orderno.focus();
				return false;
			}
			else
			{
				return true;
			}
		}
		
		function chkZip()
		{
			if(orderstatus.zipcode.value=="")
			{
				window.alert("Please enter your Billing Zip Code!");
				document.orderstatus.zipcode.focus();
				return false;
			}
			else
			{
				return true;
			}
		}
		
		function frmValidate()
		{
			if(!chkOrdNo()){return false;}
			if(!chkZip()){return false;}
			return true;
		}