//function d'ouverture de la popup garagefunction openGarage(strChemin){var titre="popupGarage";var params="toolbar=no,left=25, top=25,location=no, directories=no, status=yes, scrollbars=no, resizable=no, copyhistory=no, width=800, height=600";window.open(strChemin,titre,params);}function openViamichelin(strChemin){var titre="ViaMichelin";var params="toolbar=no,left=25, top=25,location=no, directories=no, status=yes, scrollbars=yes, resizable=no, copyhistory=no, width=500, height=600";window.open(strChemin,titre,params);}//fonction qui charge l'url selon le navigateurfunction chargeIframes(url,strID) { //netscape 7if (document.getElementById) 	{ 		document.getElementById(strID).src=url;	}//internet explorer	 else if (document.all) 	{ 		eval('document.all.'+strID).src=url;	}//autres else if (document.layers) 	{ 	document.layers[strID].src=url; 	} } 