function validateSendFile(){

	//=====================================================
	//CHANGE VALUES BELOW FOR VALIDATION AND MESSAGES
	//PLEASE PAY ATTENTION TO SYNTAX AND CASE!!!!!
	//=====================================================
	var reqYourName = true;
	var reqProjectName = false;
	var reqContactPerson = false;
	var reqSpecialInstructions = false;
	
	var msgYourName = "Your name is required.";
	var msgProjectName = "Project name is required.";
	var msgContactPerson = "Contact Person is required.";
	var msgSpecialInstructions = "Special Instructions are required.";
		
	//====================================================
	// DO NOT CHANGE BELOW THIS LINE
	//====================================================
	var YourName = document.sendFile.YourName.value;
	var YourEmail = document.sendFile.YourEmail.value;
	var ProjectName = document.sendFile.ProjectName.value;
	var ContactPerson = document.sendFile.AccountMgr.value;
	var SpecialInstructions = document.sendFile.SpecialInstructions.value;
	
	if((reqYourName) && (YourName =='')){
		alert(msgYourName);
		return false;
	}
	
	if(!(emailCheck(YourEmail))){
		return false;
	}
	
	if((reqProjectName) && (ProjectName =='')){
		alert(msgProjectName);
		return false;
	}
	
	if((reqContactPerson) && (ContactPerson =='')){
		alert(msgContactPerson);
		return false;
	}
	
	if((reqSpecialInstructions) && (SpecialInstructions =='')){
		alert(msgSpecialInstructions);
		return false;
	}
	
	
	//return document.MM_returnValue;
}

