﻿// Validation du formulaire "Faire une Demande"
function MakeRequestFrmSubmit()
{
	// Vérifie que les champs obligatoires sont présents

	if(!checkNotEmpty("LastName", LastNameCheckAlert))
		return false;
	if(!checkNotEmpty("Email", EmailCheckAlert))
		return false;
	if(!checkNotEmpty("Country", GoodTypeCheckAlert)) // country = type of property
		return false;
	if(!checkNotEmpty("Fax", FaxCheckAlert)) // fax = size of land
		return false;
	if(!checkNotEmpty("Price", PriceCheckAlert))
		return false;

	// Vérifie que les valeurs sont bien numériques

	if(!checkInt("Fax", FaxCheckAlert)) // fax = size of land
		return false;
	if(!checkInt("Price", PriceCheckAlert))
		return false;
	if(!checkInt("Rooms", RoomsCheckAlert))
		return false;

	return true;
}