function confirmLogout() {
	if(confirm("Are you sure you want to logout?\n\nOk to continue, Cancel to abort."))
		window.location='/logout/';
}
function windowPopup(url, width, height) {
  var windowPopup = window.open(url, 'windowPopup', 'height='+height+',width='+width+',directories=0,resizable=1,scrollbars=1,toolbar=0,menubar=0,status=1,location=0');
}
