function showfoto(meno,wdth,hght,fullscreen,text){
	scrollbar="0";

	if(wdth>screen.width) {
		wdth=screen.width-25;scrollbar="1";
	}
	if(hght>screen.height) {
		hght=screen.height-35;scrollbar="1";
	}
	scrollbar="0";
	var s = window.open('', '', 'fullscreen='+fullscreen+', toolbar=0, location=0, directories=0,status=0, menubar=0, scrollbars=no, resizable=0, left=20, top=2');

	s.resizeTo(wdth+25,hght+10);
	s.focus();
	s.document.open();
	s.document.write('<html>');
	s.document.write('<head><title>Fotografia</title></head>');
	s.document.write('<body leftmargin=\"0\" topmargin=\"0\">');
	s.document.write('<table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%"><tr><td align="center" height="100%">');
	s.document.write('<img src="'+meno+'" onClick="window.close();" alt="'+text+'">');
	s.document.write('</td></tr></table></body></html>');
	s.document.close();
}
function open_info(FAddress){
	showfoto(FAddress,500,500);
}
/*
function generatePage(FAddress){
	s.document.write("<html>\n");
	s.document.write("<head><title>Fotografia</title></head>\n");
	s.document.write("<body leftmargin=\"0\" topmargin=\"0\">\n");
	s.document.write("<img src=\""+FAddress+"\" border="0">\n");
	s.document.write("</body></html>\n");
}

function resizeWindow(FAddress, FWindow){
	var FImg = new image();
	FImg.src = FAddress;
	if (screen.width>FImg.width) FWindow.width=FImg.width+10;
	else FWindow.width=screen.width;
	if (screen.height>FImg.height) FWindow.height=FImg.height+10;
	else FWindow.height=screen.height;
}*/