function visite(cible){ newWin3 = window.open(cible,"Plan","status=no,height=600,width=750,scrollbars=yes,resizable=yes");}function thematique(cible){ 	newWin2 = window.open(cible,"Recherche","status=no,height=600,width=750,scrollbars=yes,resizable=yes");	if(newWin2) {    if(newWin2.opener == top) {newWin2.opener.name="principale"}    }}function affiche(chaine)	{  if (chaine != "#" )   location.href = chaine ;	}		var newWin = null;function closeWin(){	if (newWin != null){		if(!newWin.closed)			newWin.close();	}}function popUp(strURL,strType,strHeight,strWidth) {closeWin();var strOptions="";if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;if (strType=="fixed") strOptions="scrollbars,status,height="+strHeight+",width="+strWidth;if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;newWin = window.open(strURL, 'newWin', strOptions);newWin.focus();}function popUpComp(strURL,strType,strHeight,strWidth) {closeWin();var strOptions="";if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;if (strType=="fixed") strOptions="scrollbars,status,height="+strHeight+",width="+strWidth;if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;newWin = window.open(strURL,'produits',strOptions);newWin.focus();}// Pour appeler la fonction, il faut utiliser le code suivant : // <a href="ma_fenetre.htm" onclick="popUp(this.href,'console',400,200);return false;">Lien vers une nouvelle fentre</a>function confirmLink(theLink, message){    // Confirmation is not required in the configuration file    // or browser is Opera (crappy js implementation)    if (typeof(window.opera) != 'undefined') {        return true;            }    var is_confirmed = confirm(message);    if (is_confirmed) {        theLink.href += '&is_js_confirmed=1';    }    return is_confirmed;} // end of the 'confirmLink()' function