function NewWindow(url1)
{       
 var NewWinRef=window.open(url1,"NewWin","width=450,height=350,locationbar=0,menubar=0,scrollbars=0,status=0,resizable=0")
 NewWinRef.focus();
}


function chiudi()
{
	window.opener.top.close();
}
