bname = navigator.appName;
bver = parseInt(navigator.appVersion);
var isNS  = (bname == 'Netscape' && bver >= 4);
var ie4 = (bname == "Microsoft Internet Explorer" && bver >= 4);

{
graphic1= new Image();
graphic1.src = "/archive/images/man_off.gif";
graphic1on = new Image();
graphic1on.src = "/archive/images/man_on.gif";

graphic2= new Image();
graphic2.src = "/archive/images/house_off.gif";
graphic2on = new Image();
graphic2on.src = "/archive/images/house_on.gif";

graphic3= new Image();
graphic3.src = "/archive/images/work_off.gif";
graphic3on = new Image();
graphic3on.src = "/archive/images/work_on.gif";

graphic4= new Image();
graphic4.src = "/archive/images/tit_alf_off.gif";
graphic4on = new Image();
graphic4on.src = "/archive/images/tit_alf_on.gif";

graphic5= new Image();
graphic5.src = "/archive/images/tit_geo_off.gif";
graphic5on = new Image();
graphic5on.src = "/archive/images/tit_geo_on.gif";

graphic6= new Image();
graphic6.src = "/archive/images/tit_tem_off.gif";
graphic6on = new Image();
graphic6on.src = "/archive/images/tit_tem_on.gif";

graphic7= new Image();
graphic7.src = "/images/logo.gif";
graphic7on = new Image();
graphic7on.src = "/images/logo_on.gif";

graphic8= new Image();
graphic8.src = "/archive/images/women_off.gif";
graphic8on = new Image();
graphic8on.src = "/archive/images/women_on.gif";
}

function RollOver(imageID,imageName)
	{document.images[imageID].src = eval(imageName + ".src");}

function MultiRollOver(imageID1,imageName1,imageID2,imageName2)
	{
	document.images[imageID1].src = eval(imageName1 + ".src");
	document.images[imageID2].src = eval(imageName2 + ".src");
	}
	
function popUp(url,width,height) {
	var winOpts = 'resizeable=no,scrollbars=no,width=' + width + ',height=' + height;
   	popUpWin = window.open(url,'popup',winOpts);}
	
function popUpImg(imgName,width,height) {
	if (isNS) {
		var browserX=20;
		var browserY=40;
	} else {
		var browserX=20;
		var browserY=60;
	}
	var winOpts = 'resizeable=no,scrollbars=no,width=' + eval(width + browserX) + ',height=' + eval(height + browserY);
	msgWindow= window.open('','popup',winOpts);
	msgWindow.document.open();
	msgWindow.document.write('<html>');
	msgWindow.document.write('<head>');
	msgWindow.document.write('<link rel="STYLESHEET" type="text/css" href="/style.css">');
	msgWindow.document.write('</head>');
	msgWindow.document.write('<body onload="self.focus();" bgcolor="#ffffff" leftmargin="0" marginwidth="0">');
	msgWindow.document.write('<center>');
	msgWindow.document.write('<img src="' + imgName + '" border="0"><br>&nbsp;<br>');
	msgWindow.document.write('<a class="pagine" href="javascript:self.close();">Chiudi</a>');
	msgWindow.document.write('</center>');
	msgWindow.document.write('</body></html>');
	msgWindow.document.close();
}