<!--

function checkForm(){
			formRef = document.contactForm;

			if ( formRef.lastName.value.length <  2 ){
				alert('Please enter your name in the "Name" field.');
				formRef.lastName.focus();
				return;
			}
			
			

			if ( formRef.fromemail.value.length <  2 ){
				alert('Please enter an email address in the "Email Address " field.');
				formRef.fromemail.focus();
				return;
			}


			formRef.submit();
		}



	function checkForm2(){
			formRef = document.contactForm;

			if ( formRef.lastName.value.length <  2 ){
				alert('Please enter your store name in the "Store Name" field.');
				formRef.lastName.focus();
				return;
			}
			
			if ( formRef.contactName.value.length <  2 ){
				alert('Please enter your name in the "Contact Name" field.');
				formRef.contactName.focus();
				return;
			}

			if ( formRef.fromemail.value.length <  2 ){
				alert('Please enter an email address in the "Email Address " field.');
				formRef.fromemail.focus();
				return;
			}

			if ( formRef.resaleNo.value.length <  2 ){
				alert('Please enter a resale number in the "Resale Number " field.');
				formRef.resaleNo.focus();
				return;
			}


			formRef.submit();
		}



//-->
