<!--

var sentstatus=0;

function WaitStatusForm(form)
{
    if (sentstatus == 1)
    {
        alert("Processing your request...\nPlease wait until you receive a confirmation\nWe apologize for the delay");
        return false;
    }

    self.status = "Processing request...Please do not close this browser window until you receive a confirmation";
    sentstatus=1;
    return true;
}

//-->

