function showPopup(popURL,popName,popWidth,popHeight) {
	var popWin;
	var Width;
	var Height;
	if(popWidth != ''){
		Width = "width="+popWidth;
	}
	if(popHeight != ''){
		Height = ",height="+popHeight;
	}
	var popAttr = Width+Height+",resizable=1,scrollbars=1";
	popWin = window.open(popURL,popName,popAttr);
	if (popWin.opener == null) popWin.opener = self;
	popWin.focus();
}

//funzione avvisa eliminazione record
	function confirmSubmit()
	{
		var agree=confirm("Stai Per Eliminare dei dati importanti sei sicuro di voler continuare?\n\n              Cliccando OK non si potra pił tornare indietro!!");
		if (agree)
			return true ;
		else
			return false ;
	}
