<!--

function open_foto(file, windowW, windowH, scroll, target, title, bgcolor, bordercolor ) {
	if (!target) target = 'win_foto';
	if (!title) title = 'Galeria';
	if (!bgcolor) bgcolor = '#000000';
	if (!bordercolor) bordercolor = '#999999';
	if (!scroll) scroll = 'yes';
	
        var scrol=0;
	windowW += 30; windowH += 30; windowX = ((screen.width - windowW) / 2); windowY = ((screen.height - windowH) / 2);
	win = window.open('index.html', target,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=' + (scrol ? 'yes' : 'no') + ',resizable=no,left='+windowX+',top='+windowY+',width='+windowW+',height='+windowH); 
        win.document.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-2"><title>' + title +'</title></head><body bgcolor=' + bgcolor + ' leftmargin=0 topmargin=0><table cellpadding=0 cellspacing=0 border=0 width=100% height=100%><td align=center valign=center><img src="./' + file + '" style="border: solid 1px ' + bordercolor + '"></td></table></body></html>'); win.document.close();
	/*win.resizeTo(windowW, windowH); win.moveTo(windowX, windowY);*/ win.focus();
}




//-->