
//<!--
//individua il browser
var isNew = 0;	//Explorer 5
var isIE4 = 0;	//Explorer 4
var isNS4 = 0;	//Netscape
var brow = ((navigator.appName) + (parseInt(navigator.appVersion)));
if (parseInt(navigator.appVersion) >= 5) {isNew = 1;}
else if (brow == "Microsoft Internet Explorer4") {isIE4 = 1;}
else if (brow == "Netscape4") {isNS4 = 1;}


//carica il css opportuno
if (isNew || isIE4)
{
	document.write('<LINK REL="stylesheet" type="text/css" href="/jsp/img/explorerstyle.css">');
}
else if (isNS4)
{
	document.write('<LINK REL="stylesheet" type="text/css" href="/jsp/img/netscapestyle.css">');
}
//-->//


//<!--
//pop up
function winOp(link, width, height, scrollbars) {
 window.open(link,'', 'toolbar=no,scrollbars=' + scrollbars + ',resizable=no,height=' + height + ',width=' + width + '');
}
//-->//


