function fotoGal(id,w,h) {

	var alt='&nbsp;';
    var left = Math.ceil( (window.screen.width-w) / 2 );
    var top = Math.ceil( (window.screen.height-h) / 2)-30;

	myWin = window.open("","myWind","width="+w+",height="+h+",left="+left+",top="+top+");");
	myWin.document.open();
	myWin.document.write('<html><title>'+alt+'</title><body bgcolor="#ffffff" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" bottommargin="0">');
	myWin.document.write('<a href=javascript:window.close();><img src=\"'+id+'\" width='+w+' height='+h+' border=0></a>');
	myWin.document.write('</body></html>');
	myWin.document.close();
	myWin.focus();

}

function opnw(id,w,h) {

    var left = Math.ceil( (window.screen.width-w) / 2 );
    var top = Math.ceil( (window.screen.height-h) / 2)-30;

	myWin = window.open(id,"","status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=0,scroll=auto,scrollbars=auto,width="+w+",height="+h+",left="+left+",top="+top+");");

}