function art(codice){
	document.forms[0].idarticolo.value = codice;
	document.forms[0].submit();
 }
 
 function link(act, page){
 	page = page.replace("/",":");
 	act = act+"?page="+page;
 	document.forms[0].action=act;
 	document.forms[0].submit();
 }
 
function linkWin(winURL){
	win = window.open(winURL);
}

function artLink(codice,sezione,palazzo,menu){	
	document.forms[0].m.value = menu;
	document.forms[0].map.value = "pzza_edificio_"+palazzo+"_on.gif";
	document.forms[0].header.value =  "hd_edificio"+palazzo+".gif";
	document.forms[0].frame.value = sezione;
	document.forms[0].idarticolo.value = codice;
	document.forms[0].submit();
 }