var URL = String(this.location);
var POS = (URL.lastIndexOf("?")+1);
var PAG = URL.charAt(POS);
var FLG = 0
var list = "";

if (POS == 0 || PAG == "" || PAG == null){ list = "a"; FLG = 1; }
if (PAG == "d") { list = "def"; FLG = 1; }
if (PAG == "g") { list = "gh"; FLG = 1; }
if (PAG == "i") { list = "ijk"; FLG = 1; }
if (PAG == "n") { list = "nopqr"; FLG = 1; }
if (PAG == "u") { list = "uvwxyz"; FLG = 1; }
if (PAG == "p") { list = "plastic"; FLG = 1; }
if (PAG == "w") { list = "lots"; FLG = 1; }
if (FLG != 1 && list == "") { list = PAG; FLG = 1; }
if (FLG != 1) { list = "a"; }

if(navigator.appName.indexOf("Internet Explorer") != -1){
	height = 30;
} else {
	height = 35;
}

document.write ('<frameset rows="'+height+',635*" cols="*" frameborder="YES" border="1">');
document.write ('  <frame name="bar" src="listini-barra.htm" scrolling="NO" NORESIZE>');
document.write ('  <frameset rows="*,35" cols="*" frameborder="YES" border="1">');
document.write ('    <frame name="list" src="lists/list_'+list+'.htm" scrolling="AUTO" NORESIZE">');
document.write ('    <frame name="foot" src="listini-aggiungi.htm" scrolling="NO" NORESIZE">');
document.write ('  </frameset>');
document.write ('</frameset>');
