// JavaScript Document
<!--
 function QC_CheckForm() {
		 if (!(document.litronQC.name.value.length > 0) || (document.litronQC.name.value=="name")) 
			{        
			alert("Please tell us your Name.");
			litronQC.name.focus();
			return false;
			}
		if (!(document.litronQC.phone.value.length > 0) || (document.litronQC.phone.value=="phone number")) 
			{        
			alert("Please tell us your Phone Number.");
			litronQC.phone.focus();
			return false;
			}                    
		if (!(document.litronQC.email.value.length > 0) || (document.litronQC.email.value=="email")) 
			{        
			alert("Please tell us your Email Address.");
			litronQC.email.focus();
			return false;
			}                    
		 if (!(document.litronQC.comments.value.length > 0)) //|| (document.litronQC.comments.value=='comments')) 
			{        
			alert("Please leave us your Comments.");
			litronQC.comments.focus();
			return false;
			}
	return true;
}

function AE_CheckForm() {
		 if (!(document.engineerForm.name.value.length > 0)) 
			{        
			alert("Please tell us your Name.");
			engineerForm.name.focus();
			return false;
			}
		if (!(document.engineerForm.email.value.length > 0)) 
			{        
			alert("Please tell us your Email Address.");
			engineerForm.email.focus();
			return false;
			}                    
		 if (!(document.engineerForm.comments.value.length > 0)) 
			{        
			alert("Please tell us your Question.");
			engineerForm.comments.focus();
			return false;
			}
	return true;
}

function CF_CheckForm() {
		 if (!(document.contactForm.name.value.length > 0)) 
			{        
			alert("Please tell us your Name.");
			contactForm.name.focus();
			return false;
			}
		if (!(document.contactForm.email.value.length > 0)) 
			{        
			alert("Please tell us your Email Address.");
			contactForm.email.focus();
			return false;
			}                    
		 if (!(document.contactForm.phone.value.length > 0)) 
			{        
			alert("Please Provide a Contact Number.");
			contactForm.comments.focus();
			return false;
			}
	return true;
}

 function RFQ_checkform() {
		 if (!(document.RFQForm.name.value.length > 0) || (document.RFQForm.name.value=="name")) 
			{        
			alert("Please tell us your Name.");
			RFQForm.name.focus();
			return false;
			}
		if (!(document.RFQForm.tel.value.length > 0) || (document.RFQForm.tel.value=="phone number")) 
			{        
			alert("Please tell us your Phone Number.");
			RFQForm.tel.focus();
			return false;
			}                    
		if (!(document.RFQForm.email.value.length > 0) || (document.RFQForm.email.value=="email")) 
			{        
			alert("Please tell us your Email Address.");
			RFQForm.email.focus();
			return false;
			}                    
	return true;
}

 function CRF_checkform() {
		 if (!(document.courierForm.company.value.length > 0) || (document.courierForm.company.value=="company")) 
			{        
			alert("Please tell us your Company.");
			courierForm.company.focus();
			return false;
			}
		 if (!(document.courierForm.name.value.length > 0) || (document.courierForm.name.value=="name")) 
			{        
			alert("Please tell us your Name.");
			courierForm.name.focus();
			return false;
			}
		if (!(document.courierForm.phone.value.length > 0) || (document.courierForm.phone.value=="phone")) 
			{        
			alert("Please tell us your Phone Number and Extension.");
			courierForm.phone.focus();
			return false;
			}      
		if (!(document.courierForm.email.value.length > 0) || (document.courierForm.email.value=="email")) 
			{        
			alert("Please tell us your Email Address.");
			courierForm.email.focus();
			return false;
			}                                  
	return true;
}
//-->
