
/*
if (typeof (parent.frames["contents"]) != "undefined")
{
	var i = (document.location.href).lastIndexOf ("/");
	var l = (document.location.href).indexOf (".asp");
	var url = (document.location.href).substring(i+1, l+4);
	parent.frames["contents"].pagina = "catalogo/" + (document.location.href).substring(i+1, l+4);
}
*/
var pagina = "body.asp";  // pagina iniziale
var bAperta = false;

 
function vaiPagina() {

	var i = 0
	i = document.form1.a.selectedIndex;
	if (document.form1.a.options[i].value != 'ns') {
		//alert(navigator.appName)
		if (navigator.appName.indexOf("Microsoft") != -1)
			w = open("/Prezzi/fasceE.asp#" + document.form1.a.options[i].value, "uffa", "Scrollbars=1,resizable=1,width=350,height=400, left=" + (screen.availWidth - 360) + ",top=50");
		else
			w = open("/Prezzi/fasceN.asp#" + document.form1.a.options[i].value, "uffa", "Scrollbars=1,resizable=1,width=350,height=400");
		if (w.opener == null)
			w.opener = self;
		w.focus();
		document.form1.a.selectedIndex = 0;
		bAperta = true;
	}
}

function chiudiFasce() {
	if (bAperta)
		w.close();
} 

