function ouvre(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 onselectstart="return false" oncontextmenu="return false" ondragstart="return false"; return true;" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<img src='+nom+' width='+w+' height='+h+'>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
var texte = 'Mariachi Veracruz'
window.defaultStatus = texte 
