function Redirect(url)
{
    window.location.href = url;
}

function OpenWindow(url, width, height)
{
    window.open(url,'mywin',
        'left=20,top=20,width=' + width +',height=' + height + ',toolbar=1,resizable=1,scrollbars=1');
}

function OpenPopupWindow(url, width, height)
{
    var left = (screen.width/2)-(width/2);
    var top = (screen.height/2)-(height/2);
    window.open(url,'mywin',
        'left=' + left + ',top=' + top +',width=' + width +',height=' + height + ',toolbar=0,resizable=1,scrollbars=1');
}

function ConfirmDelete()
{
    return confirm("Are you sure you want to delete?");
}

function ConfirmDelete2(objectName)
{
    return confirm("Are you sure you want to delete " + objectName + "?");

}

function ConfirmDelete3()
{
    return confirm("Are you sure you want to delete? All reminders for this Service Provider will be removed");

}

function ConfirmSetPrimary()
{
    return confirm("All reminders for non-primary Service Providers will be removed. Continue?");
}