function ValidateContactForm(){
	
	var FirstName = new String(document.ContactForm.first_name.value);
	var LastName = new String(document.ContactForm.last_name.value);
	var pStreet = new String(document.ContactForm.pStreet.value);
	var pCity = new String(document.ContactForm.pCity.value);
	var pState = new String(document.ContactForm.pState.value);
	var pZip = new String(document.ContactForm.pZip.value);
	var oEmail = new String(document.ContactForm.oEmail.value);
	var oStreet = new String(document.ContactForm.oStreet.value);
	var oCity = new String(document.ContactForm.oCity.value);
	var oState = new String(document.ContactForm.oState.value);
	var oZip = new String(document.ContactForm.oZip.value);
	
	//alert(FirstName.charAt(FirstName.length-1) + " " + FirstName.slice(0,FirstName.length-1));
	
	if(FirstName.length>0 && LastName.length>0 && pStreet.length>0 && pCity.length>0 && pState.length>0 && pZip.length>0 && oEmail.length>0 && oStreet.length>0 && oCity.length>0 && oState.length>0 && oZip.length>0){
		return true;
	} else {
		alert("Please fill in all the required fields");
		return false;
	}
}