function popupWindow(pageURL, windowName, w, h, features)
{
        var winl = (screen.width - w) / 2;
        var wint = (screen.height - h) / 2;
        winprops = 'width='+w+',height='+h+',top='+wint+',left='+winl+','+features

        var popupWindow = window.open( pageURL ,windowName,winprops);
        popupWindow.focus();
}

function showLogoutConfirm()
{
	return confirm("Are you sure you want to logout of the CMS?");	
}

function confirmDelete()
{
	return confirm("Are you sure you want to permanently delete this record?");
}
