function cv_data_validate() {


	// Name Short or blank
	if (document.form.name.value.length < 4) { 
	alert ("Please Enter Your Name. (Full Name)"); 
	document.form.name.focus();
	return(false);
	}

	
	// Phone Number Validate
	if (document.form.phone.value.length < 10) { 
	alert("You Must Enter Your Phone Number or Phone Number Is Invalid."); 
	document.form.phone.focus();
	return(false);
	}

	// Phone Number Num Validate  
	if(document.form.phone.value){
   	var i;
   	var v = "" + document.form.phone.value;
   	for(i=0; i<v.length; i++){
    	if(v.charAt(i) < '0' || v.charAt(i) > '9'){
    	alert("Phone Number Must Be Numeric.");
	document.form.phone.focus();
    	return(false);
    	}}}


	// Short Email - From
	if (document.form.from_email.value.length < 5) {
    	alert("Missing From Email. Please Enter Your From Email");
    	document.form.from_email.focus();
    	return (false);
	}
	
	// Long Email - From
	if (document.form.from_email.value.length > 49) {
   	alert("From Email Address is too Long.");
    	document.form.from_email.focus();
    	return (false);
	}


	// Short Email - email_alt
	if (document.form.email_alt.value.length < 5) {
    	alert("Missing Altanate Email. Please Enter Your Altanate Email");
    	document.form.email_alt.focus();
    	return (false);
	}
	
	// Long Email - email_alt
	if (document.form.email_alt.value.length > 49) {
   	alert("Altanate Email Address is too Long.");
    	document.form.email_alt.focus();
    	return (false);
	}

	// Short Email - to_email
	if (document.form.to_email.value.length < 5) {
    	alert("Missing To Email. Please Enter The To Email");
    	document.form.to_email.focus();
    	return (false);
	}
	
	// Long Email - to_email
	if (document.form.to_email.value.length > 49) {
   	alert("To Email Address is too Long.");
    	document.form.to_email.focus();
    	return (false);
	}


	// Blank Image Validation Key
	if (document.form.key.value.length < 4) {
   	alert("Blank or No Image Validation Key Entered.");
    	document.form.key.focus();
    	return (false);
	}





} // END
