/***************************************************************************
 *				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';
}



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

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


