
function ShowHide(object)
{
		if (object.style.display=='none')
		{
			object.style.display='';
		}
		else
		{
			object.style.display='none';
		}
}

function MostraNascondi(RowName) 
{ 
    if (document.getElementById(RowName).style.display == "none") 
    {     
        document.getElementById(RowName).style.display = "block"; 
	 
    }
    else 
    { 
        document.getElementById(RowName).style.display = "none"; 
	 
    }
 }
 


function PopUp(file,windows,w,h) {
window.open(file,windows,"height="+h+",width="+w+", toolbar=no,location=no,directories=no,scrollbars=no,status=no,resizable=no,copyhistory=no,left="+ (screen.width - w -10) /2 + ",top=" + (screen.height - h -10) /2 );
}

function PopUpScroll(file,windows,w,h) {
window.open(file,windows,"height="+h+",width="+w+", toolbar=no,location=no,directories=no,scrollbars=yes,status=no,resizable=yes,copyhistory=no,left="+ (screen.width - w -10) /2 + ",top=" + (screen.height - h -10) /2 );
}


