
function GoToUrl(myurl)
{
    document.location=myurl;
};


function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
//alert(mypage);
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4)  win.window.focus(); 
// popup = window.open(pagina,"","height=200,width=350,scrollbars=yes");

};

function Nascondi_div()
{
  var isIE=document.all?true:false;
  var isDOM=document.getElementById?true:false;
  var isNS4=document.layers?true:false;
  
  
  if (isDOM) 
    {
    document.getElementById('div_curr_sopra').style.visibility='hidden';
    document.getElementById('div_curr_sotto').style.visibility='visible';

    }

};

function Riapri_div()
{
  var isIE=document.all?true:false;
  var isDOM=document.getElementById?true:false;
  var isNS4=document.layers?true:false;
  
  
  if (isDOM) 
    {
    document.getElementById('div_curr_sopra').style.visibility='visible';
    document.getElementById('div_curr_sotto').style.visibility='hidden';

    }

};


function CambiaSezione(Sezione)

{
	
	document.Form_Item.F_ITEMS_PK_CODICE.value=Sezione;
	document.Form_Item.F_ITEMS_AZIONE.value="READ";
	document.Form_Item.submit();
	
}

function NuovaSezione(Sezione)

{

	document.Form_Item.F_ITEMS_AZIONE.value="NEW";
	

	document.Form_Item.submit();
	
}



