function formCheck(formobj){

	var fieldRequired = Array("first_name", "last_name", "age", "email", "marital_status", "ph_number", "ph_number2", "cph_number", "cph_number2", "timetocall", "income", "destination", "nb_adults", "arrival_date", "arrival_airline", "flight_number", "hotel");
	var fieldDescription = Array("First Name", "Last Name", "Age", "E-mail", "marital status", "area code phone number", "phone number", "confirm area code", "confirm phone number", "time to call", "income", "destination", "number of adults", "Arrival Date", "Arrival airline", "flight", "hotel");
	var alertMsg = "Please complete the following fields:\n";
		var l_Msg = alertMsg.length;
		for (var i = 0; i < fieldRequired.length; i++){
		var obj = formobj.elements[fieldRequired[i]];
		if (obj){
			switch(obj.type){
			case "select-one":
				if (obj.selectedIndex == -1 || obj.options[obj.selectedIndex].text == ""){
					alertMsg += " - " + fieldDescription[i] + "\n";
				}
				break;
			case "select-multiple":
				if (obj.selectedIndex == -1){
					alertMsg += " - " + fieldDescription[i] + "\n";
				}
				break;
			case "text":
			case "textarea":
				if (obj.value == "" || obj.value == null || obj.value=="yyyy/mm/dd"){
					alertMsg += " - " + fieldDescription[i] + "\n";
				}
				break;
			default:
				if (obj.value == "" || obj.value == null || obj.value=="yyyy/mm/dd"){
					alertMsg += " - " + fieldDescription[i] + "\n";
				}
			}
		}
	}
	if (alertMsg.length == l_Msg){
		return true;
	}else{
		alert(alertMsg);
		return false;
	}
}