
function finestraGrande(dest)
	{
	i1 = new Image;
	i1.src = dest;
	html = '<HTML>\n<HEAD>\n<TITLE>Image</TITLE>\n</HEAD>\n<BODY bgcolor="#000000" LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0>\n<CENTER><IMG SRC="'+dest+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+14,document.imageTest.height+32);"></CENTER>\n</BODY>\n</HTML>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close();
	};


function popupWindow(url_string, windowName,width, height)
{
	var isMac = (navigator.platform.indexOf("MacPPC")!=-1);
	var winwidth = width;
	var winheight = height;
	if (isMac)
	{
		winwidth=width-15;
		winheight=height-15;
	}
	return window.open(url_string,windowName,"menubar=no,directories=no,location=no,resizable=no,toolbar=no, scrollbars=yes ,width="+winwidth+",height="+winheight+",top=10,left=10");
	
}