function closeWindow() {
	window.close()
}
function closewindow() {
	window.close()
}

function popup(page,longueur,hauteur) {
	var ns=(navigator.appName.indexOf('Netscape') != -1);
	if (ns) {
		win = window.open(''+page+'','fenetre'+longueur+'','toolbar=no,location=no,directories=no,status=0,menubar=no,scrollbars=no,resizable=yes,width='+longueur+',height='+hauteur+',alwaysRaised=yes,z-lock=yes');
		win.focus();
	} else {
		win = window.open(''+page+'','fenetre'+longueur+'','toolbar=no,location=no,directories=no,status=0,menubar=no,scrollbars=no,resizable=yes,width='+longueur+',height='+hauteur+',alwaysRaised=yes,z-lock=yes');
	}
}
function popupwithbar(page,longueur,hauteur) {
	var ns=(navigator.appName.indexOf('Netscape') != -1);
	if (ns) {
		win = window.open(''+page+'','fenetre','toolbar=no,location=no,directories=no,status=0,menubar=no,scrollbars=yes,resizable=yes,width='+longueur+',height='+hauteur+',alwaysRaised=yes,z-lock=yes');
		win.focus();
	} else {
		win = window.open(''+page+'','fenetre','toolbar=no,location=no,directories=no,status=0,menubar=no,scrollbars=yes,resizable=yes,width='+longueur+',height='+hauteur+',alwaysRaised=yes,z-lock=yes');
	}
}

var popupImage;
function popupImageGoodSize(chemin, titre) {
	var ns=(navigator.appName.indexOf('Netscape') != -1);
	img = new Image;
	img.src = chemin;

	scrollbars='no';
	if(img.width>800 || img.height>600)
		scrollbars='yes';
	//alert(img.src+" - "+img.width+"x"+img.height);
	html = '<html><head><title>'+titre+'</title></head><body leftmargin="0" marginwidth="0" topmargin="0" marginheight="0"><center>'+
		   '<img src="'+chemin+'" border="0" name="currentImage" onLoad="window.resizeTo(document.currentImage.width+20, document.currentImage.height+64)">'+
		   '</center></body></html>';

	popupImage = window.open('','popupImage','toolbar=no,location=no,directories=no,status=no,menubar=no,titlebar=no, scrollbars='+scrollbars+',resizable=yes,alwaysRaised=yes,z-lock=yes');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	popupImage.focus();
};

function simplePopup(url) {
	var ns=(navigator.appName.indexOf('Netscape') != -1);
	win = window.open(''+url+'','fenetre','toolbar=no,location=no,directories=no,status=0,menubar=no,scrollbars=yes,resizable=yes,alwaysRaised=yes,z-lock=yes');
	if (ns) {
		win.focus();
	}
};
function ImageProduitPopup(titre,chemin,largeur,hauteur){
   	if (largeur>10)
	   	html = "<html><head><title>"+titre+"</title></head><body onblur=\"top.close()\" "+
	   			"style=\"margin:0;padding:0;\"><IMG src=\""+chemin+"\" BORDER=0></body></html>";
 	else
	   	html = "<html><head><title>"+titre+"</title></head><body onblur=\"top.close()\" "+
	   			"style=\"margin:0;padding:0;\"><IMG src=\""+chemin+"\" BORDER=0 name=ImageMax id=ImageMax "+
	   			"onLoad=\"window.resizeTo(document.ImageMax.width+12, document.ImageMax.height+56)\"></body></html>";
  	popupImage = window.open("","_blank","toolbar=0, location=0, directories=0, menuBar=0, scrollbars=0, resizable=1, width="+largeur+", height="+hauteur+"");
   	popupImage.document.open();
   	popupImage.document.write(html);
   	popupImage.document.close();
   	return false;
}; 
