/*-----------------------------------------------------------------------------------------------*/
//
// Copyright (c) 2008 Agence Clark (http://www.agence-clark.com)
//
/*-----------------------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------------------*/
// Init Page
/*-----------------------------------------------------------------------------------------------*/
Event.observe(window, 'load', InitPage, false);
function InitPage(){
	RollOverImage();
	$$('input.calendrier').each(function(e){
		Event.observe(e,'focus',function(){
			displayCalendar(this,'dd/mm/yyyy',this,false,false);
		});
	});
	if($('a_envoyer_ami')){
		Event.observe('a_envoyer_ami','click',function(){
			OpenClose('a_envoyer_ami','envoi_ami');
		});
	}
}

/*-----------------------------------------------------------------------------------------------*/
// Fonctions
/*-----------------------------------------------------------------------------------------------*/
var afficheAmi = function(){
	OpenClose('a_envoyer_ami','envoi_ami')	
	if($('confirmation_envoi_ami')){
		$('confirmation_envoi_ami').remove();
	}
	$('frm_envoi_ami').reset();
};
