function cmdLogOut()
{
var Test = window.confirm("Are you Sure you want to log out?  Click OK to continue. Click Cancel to stop.");
	if (Test) {
	        window.location.href="admin_login.aspx?action=logout"                
        }  else  {
        
			//Do nothing
       }
       
}

function cmdTenantLogOut()
{
var Test = window.confirm("Are you Sure you want to log out?  Click OK to continue. Click Cancel to stop.");
	if (Test) {
	        window.location.href="tenant_login.aspx?action=logout"                
        }  else  {
        
			//Do nothing
       }
       
}


function ConfirmDelete()
{
	return confirm("Are you Sure you want to delete this record?  Click OK to continue. Click Cancel to stop.");
}

function ConfirmDecline()
{
	return confirm("Are you Sure you want to decline this promotion?  Click OK to continue. Click Cancel to stop.");
}

