// Fonction de rollover
function rollover_tjs(nom,src) {	
	// nom est le nom de l'image
	// src est l'adresse du fichier d'image
	document.images[nom].src=src;
}

function clear_form(){
	document.formContact.mail.value='';
	document.formContact.name.value='';
	document.formContact.message.value='';
}

function OuvrirPopup(param,type,color) {
	var color;
	var height=600;
	var width=600;
	var top=0;
	var left=(screen.width-width)/2;	
   window.open("popup.php?p="+param+"&color="+color+"&type="+type,'','top='+top+',left='+left+',width='+width+',height='+height+',toolbar=0,menubar=0,scrollbars=1,resizable=0');
}