﻿function ConfirmDelete() 
{
    if (confirm("Are You sure?"))
    {
        return true;
    }
    else
    {
        return false;
    }
}

function ConfirmDelete2() 
{
    if (!confirm("Are You sure?"))return false;
}

function ConfirmNewOrder() 
{
    if (confirm("You are about submit a new order.  Please click 'Yes' to confirm and 'No' to Cancel."))
       {
        return false;
       }
       {
        return True;
       }
}
function CancelOrder()
{
    window.location="MyCarts.aspx";
}

function NewOrderSubmit()
{
    alert("Thank you for your Labs Done Fast order.  You will receive a confirmation E-Mail once the order has been processed");
    window.location="MyOrders.aspx";
}
function NewQuoteSubmit()
{
    window.location="MyQuotes.aspx";
}

function ConfirmNewOrder1() 
{
    if (!confirm("You are about submit a new order.  Please click 'Yes' to confirm and 'No' to Cancel."))return false;
}