var zoomHwnd;
function doZoomImage(img_url) {
	if (zoomHwnd){
		zoomHwnd.close();
	}
	
	zoomHwnd = wOpen("", "", 600, 400, "1", 
			"<html><head><title>Fotografia</title></head><body leftmargin=0 topmargin=0 rightmargin=0 bottommargin=0 marginheight=0 marginwidth=0 onload=\"window.resizeTo( document.getElementById('foto_zoom').width + 100, document.getElementById('foto_zoom').height + 100 );\"><table cellpadding=0 cellspacing=0 border=0 width=100% height=100%><tr align=center valign=middle><td><img src=\""+img_url+"\" id=\"foto_zoom\"></td></tr></table></body></html>", ",resizable=1");
}

function wOpen( pURL, pName, w, h, scroll, text, specialSettings ) {
	xLeft=(screen.width)?(screen.width-w)/2:0;
	xTop=(screen.height)?(screen.height-h)/2:0;
	xSettings = 'height='+h+',width='+w+',scrollbars='+scroll+specialSettings
	hwnd = window.open(pURL,pName,xSettings);
	if(hwnd.window.focus){hwnd.window.focus();}
	if(text != "") hwnd.document.write(text);
	hwnd.document.close();
	return hwnd;
}