function popUp (page, name, width, height, scrollbars, resizable)
{
	window.open (page, name, 'status = no, menubar = no, location = no, directories = no, width = '+ width + ', height = '+ height + ', scrollbars = '+ scrollbars + ', resizable = '+ resizable);
}

function confirm_logout()
{
	if(confirm("Confirm logout?"))
	{
		window.location = "/en/leonardo_automation_club/logout.aspx";
	}
}



