function checkData(){
	frm = document.theForm;
	return lengthValid(frm.SNAME, 4,"full name") 
	&& emailValid(frm.EMAIL, 4,"Email")
	&& lengthValid(frm.STELH, 10,"ten digits phone number")
	&& selectValid(frm.MM, "month")	
	&& selectValid(frm.DD, "day")	
	&& zipValid(frm.SZIP, 5, "five digits origin zip code -US only") 
	&& zipValid(frm.RZIP, 5, "five digits destination zip code - US only")
	&& selectValid(frm.ROOMS,"weight")
	}

function SubmitEntry() {
		if (checkData()) {
			document.theForm.action="http://www.hellomoving.net/wc.dll?mpdir~moduleret~MOVINGDIR";
			document.theForm.submit();
			}
      }  

function locatezip() {
    window.open('http://www.hellomoving.net/wc.dll?mputil~zipwc~NEW','EANITHING','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=no,scrollbars=yes,width=550,height=500');
self.name="main"}
