function popup(name, width, height) {
	w=window.open('','', 'border=0,margin=0,padding=0,toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=no,width='+width+',height='+height);
	w.document.write('<html>\n');
	w.document.write('  <head>\n');
	w.document.write('    <title>Hôtel Choiseul - cliquez pour fermer la fenêtre</title>\n');
	w.document.write('  </head>\n');
	w.document.write('  <body onclick="close();" style="margin: 0;">\n');
	w.document.write('    <img src="../images/image-' + name + '-big.jpg" style="postion: absolute; top: 0; left:0;" />\n');
	w.document.write('  </body>\n');
	w.document.write('</html>\n');
	w.document.close();
}

function gpopup(url,name,width, height) {
	window.open(url,name, "menubar=no,location=no,directories=no,status=no,border=0,margin=0,padding=0,toolbar=no,scrollbars=no,statusbar=no,resizable=no,width="+width+",height="+height);
}