
// ###   P O P U P   ###
function popUp (page, name, width, height, scrollbars, resizable)
{
	window.open (page, name, 'status = yes, menubar = yes, width = ' + width + ', height = ' + height + ', scrollbars = ' + scrollbars + ', resizable = ' + resizable);
}
  
function PopupRestricted (Page, Name, Width, Height, Scrollbars, Resizable) 
{
	window.open (Page, Name, 'status = no, menubar = no, width = ' + Width + ', height = ' + Height + ', scrollbars = ' + Scrollbars + ', resizable = ' + Resizable);
}

function Logout () {
	if (confirm ('Sei sicuro di voler uscire dall\'area riservata?\n\nOK per continuare, Annulla per annullare')) {
		document.location.href = 'area_riservata_logout.asp';
	}
}