/*-----------------------------------------------------------------------------------------------*/
// Init Page
/*-----------------------------------------------------------------------------------------------*/
Event.observe(window, 'load', InitPage, false);
function InitPage(){
}

/*-----------------------------------------------------------------------------------------------*/
// Fonctions
/*-----------------------------------------------------------------------------------------------*/
var frmContact = function(){
	param_form = { mep: 'msg_champ', autoScroll: false, action: 'submit'};
	champs_form = {
		nom: {alerte:frm_nom}, 
		prenom: {alerte:frm_prenom},
		email: {type:'mel', alerte:frm_email},
		tel: {alerte:frm_tel},
                type: {alerte:frm_type},
                periode: {alerte:frm_periode},
		commentaire: {alerte:frm_commentaire}
	};
	return formVerif('frm_contact', champs_form, param_form);

};
