

function hOverTitolo(szName)
{
	document.images[szName].src = (document.images[szName].src).replace(/_off/, "_on");
}

function hOutTitolo(szName)
{
	document.images[szName].src = (document.images[szName].src).replace(/_on/, "_off");
}

function hOver(szName)
{
	document.images["A" + szName].src = "img/freccina_link_on.gif";
	document.images[szName].src = (document.images[szName].src).replace(/_off/, "_on");
}

function hOut(szName)
{
	document.images["A" + szName].src = "img/freccina_link_off.gif";
	document.images[szName].src = (document.images[szName].src).replace(/_on/, "_off");
}

function hOverVolta(szName)
{
	document.images[szName].src = (document.images[szName].src).replace(/_off/, "_on");
}

function hOutVolta(szName)
{
	document.images[szName].src = (document.images[szName].src).replace(/_on/, "_off");
}

function openpop(URL,W,H,SR)
{
	L = parseInt((window.screen.width - W) / 2);
	T = parseInt((window.screen.height - H) / 2);
	var Wnd = window.open(URL, "", "left=" + L + ",top=" + T + ",width=" + W + ",height=" + H + ",toolbar=no,resizable=no,location=no,directories=no,status=no,menubar=no,scrollbars=" + SR);
}

function popup(URL,Title,W,H)
{
	L = parseInt((window.screen.width - W) / 2);
	T = parseInt((window.screen.height - H) / 2);

	Foto = window.open("", "", "left=" + L + ",top=" + T + ",width=" + W + ",height=" + (H) + ",toolbar=no,resizable=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes");
	Foto.document.write("<html>");
	Foto.document.write("<head>");
	Foto.document.write("<title>" + Title + "</title>");
	Foto.document.write("<link rel='STYLESHEET' type='text/css' href='css/default.css'>");
	Foto.document.write("</head>");
	Foto.document.write("<body leftmargin='0' topmargin='0' marginheight='0' marginwidth='0' bgcolor='#ffffff'>");
	Foto.document.write("<table width='100%' height='400' border='0' cellpadding='0' cellspacing='0'>");
	Foto.document.write("<tr align='center' valign='middle'><td><img src='" + URL + "' border='0' alt=''></td></tr>");
	Foto.document.write("</table>");
	Foto.document.write("</body>");
	Foto.document.write("</html>");
}