<!-- // Fonctions JavaScript
/* Adresse : <script type="text/javascript" src="../_js/fonctions_javascript.js" language="javascript"></script><!-- seul --> */

var popup=null;

function Popup(Options,url) {
// Ouvre une popup
	if(popup!=null){popup.close();}
	window.open(url,"new",Options);
	// var options="width=500,height=300,scrollbars=yes,left=250,top=50";
}

function PopupZoomPhoto(url) {
// Pour afficher la photo du produit en grand
	var options="width=350,height=300,scrollbars=no,left=150,top=50,status=no";
	if(popup!=null){popup.close();}
	popup=window.open("","new",options);
	popup.document.write('<html>\n<head>\n<title>D&eacute;tail photo</title>\n</head>\n<body>\n<p align="center"><br/>\n');
	popup.document.write('<img src="'+url+'"/></p>\n');
	popup.document.write('<p align="center"><input type="button" value="fermer" onclick="self.close()" /></p>\n');
	popup.document.write('</body>\n</html>');
}

function suppDonnee(champ,txt) {
// Pour supprimer la valeur par défaut du champ
	var detailVal=champ.value;
	if(detailVal==txt) champ.value="";
}

function maj(champ,affichage){
// Mise à jour de la valeur du champ de recherche
	champ.value=affichage;
}
//-->
