//ZIPLINE FLASH REWRITE FUNCTION
function ziplineFlashEmbed(flash) { 
	document.write(flash); 
} 

function ValidateForm(){
	
	var startzip=document.frmSample.startzip
	var endzip=document.frmSample.endzip
	var date=document.frmSample.date
	
	if ((startzip.value==null)||(startzip.value=="")||(endzip.value==null)||(endzip.value=="")||(date.value==null)||(date.value=="")){
		alert("Please enter all fields to request a quote.")
		startzip.focus()
		return false
	}
	
	return true
 }
 
