function ouvre2(nom,w,h,titre,posg,posh) {

	newWindow = window.open("","newWindow","width="+w+",height="+h+",left="+posg+",top="+posh);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+titre+'</title><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">'); 
	newWindow.document.write('<img src='+nom+' width='+w+' height='+h+'>'); 
	newWindow.document.write('</body></html>')
	newWindow.document.close();
	newWindow.focus();
}