/***************************************************************************
 *				javascript.js
 *				-------------
 *	Cree le		: 30 Octobre 2007
 *	Derniere modif.	: 12 Novembre 2007
 *	Auteur		: Agence ici - Asselin Benoit
 *	Site		: http://www.agenceici.com/
 *
 ***************************************************************************/



function antiSpam(mt1, mt2, mt3) {
	var link = 'mailto:' + mt1 + '@' + mt2 + '.' + mt3;
	location.href = link;
	return false;
}



function accesDisplay() {
	var v_acces = document.getElementById('acces');
	v_acces.style.display = (v_acces.style.display == 'block') ? 'none' : 'block';
	
	/***************************************************************************
   *	Focus sur l'utilisateur
   *	Cree le		: 27/02/2008
   *	Derniere modif.	: 27/02/2008
   *	Auteur		: CCH@FullSave
   *
   ***************************************************************************/
	var v_user = document.getElementById('user');
	if (v_user && v_acces.style.display=='block'){
    v_user.focus();
	}
	/***************************************************************************
   *	Focus sur l'utilisateur|End
   ***************************************************************************/
}



window.onload = function() {
	if(document.getElementById('map')) { load(); }
}

window.unload = function() {
	if(document.getElementById('map')) { GUnload(); }
}


