var popupCart;
var popupGen;
var popupImg;
var oColor;

function oImg(url)
	{
		//popup per visualizzazione immagine
		if (popupImg!=null){popupImg.close();}
		popupImg=window.open(url,'Immagine','width=50px,height=50px,location=0,menubar=0,resizable=1, scrollbars=0,status=0, toolbar=0');
		event.returnValue=null;
		return 0;
	}

function showFAD(path)
	{
		var popup;
		popup=window.open(path,'FAD','width=822px,height=651px,left=0,top=0,location=0,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0');
		event.returnValue=null;
		return 0;
	}
function egoLogonPopup()
	{
		var popup;
		popup=window.open('EgoLogonPopup.html','FAD','width=450px,height=450px,location=0,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0');
		event.returnValue=null;
		return 0;
	}	
function showPOPUP(path)
	{
		if (popupGen!=null){popupGen.close();}
		popupGen=window.open(path,'popup','width=822px,height=651px,left=0,top=0,location=0,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0');
		event.returnValue=null;
		return 0;
	}
function reloadParent()
{
	if (top.window.opener != null)	top.window.opener.document.forms[0].submit();
}

//Gestione dell'evidenziazione linea
function hl(row,startFrom,hiLite)
{
	var i;
	for (i=startFrom;i<row.cells.length;i++)
	{
		if (hiLite) 
		{
			oColor=row.cells(i).style.backgroundColor;
			row.cells(i).style.backgroundColor="#A7D9E7";
		}
		else
		{
			row.cells(i).style.backgroundColor=oColor;
		}
	}
}
