
// ###   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 + ', alwaysRaised=yes');
}

function logout()
{
	if (confirm ('Are you sure you want to logout?\n\nClick OK to continue'))
		{
		document.location.href = 'ReservedAreaLogout.asp';
		}
}
