function popup(reset)
{
    var confirmed = window.confirm("Out of Office is currently on. Click OK to turn it off, or Cancel to leave it on.");

    if (confirmed)
    {
	    reset.resetoutofoffice.value="1"
	    reset.submit();
    } 
} 

function redirect(newURL, userName)
{
	var msg;
	
	if(userName == '')
		msg= "Out of Office is now on. Click OK to review documents that you currently own, or Cancel to continue.";
	else
	{
		msg = "Out of Office is now on for user '";
		msg += userName;
		msg += "'. Click OK to review documents that they currently own, or Cancel to continue.";
	}

    if (confirm(msg))
        document.location=newURL;
} 

