
function galleryImage(url,w,h) {

	var alt=' - ';
    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" onBlur="self.close()">'); 
	myWin.document.write('<a href=javascript:window.close();><img src=\"'+url+'\" width='+w+' height='+h+' border=0></a>'); 
	myWin.document.write('</body></html>');
	myWin.document.close();
	myWin.focus();

}


