<!--

function confirmSignOff (loc)
{
retValue = window.confirm("Do you really want to sign off and lock this report?");
if (retValue) window.location = loc ;
}

function confirmDelete (loc)
{ 
retValue = window.confirm("Do you really want to delete this record?");
if (retValue) window.location = loc ;
}

function confirmHide (loc)
{ 
retValue = window.confirm("Do you really want to hide/unhide this record?");
if (retValue) window.location = loc ;
}

function confirmSubmit (loc)
{ 
retValue = window.confirm("Do you really want to proceed data submission?");
if (retValue) window.location = loc ;
}

function confirmUnLock (loc)
{ 
retValue = window.confirm("Do you really want to unLock this record?");
if (retValue) window.location = loc ;
}


function confirmDeleteLepDemo (loc)
{ 
retValue = window.confirm("Stop!  This will also delete the service records associated with the student!");
if (retValue) window.location = loc ;
}

function confirmSASID (loc)
{ 
retValue = window.confirm("Do you really want to initiate a new SASID for this student?");
if (retValue) window.location = loc ;
}
function confirmISASID (loc)
{ 
retValue = window.confirm("Do you really want to initiate a new SASID for this student?");
if (retValue) window.location = loc ;
}

function confirmTSASID (loc)
{ 
retValue = window.confirm("Do you really want to transfer this SASID to this student?");
if (retValue) window.location = loc ;
}

function confirmGetSASID (loc)
{ 
retValue = window.confirm("Do you really want to add this student?");
if (retValue) window.location = loc ;
}

function confirmSASID_batch (loc)
{ 
retValue = window.confirm("Do you really want to batch-assign SASIDs for these students?");
if (retValue) window.location = loc ;
}

function confirmUnlock (loc)
{ 
retValue = window.confirm("Do you really want to unlock the records for this school?");
if (retValue) window.location = loc ;
}

function confirmValidate (loc)
{ 
retValue = window.confirm("Click OK to validate and submit the records.  This process may take several minutes, check for Status in Red below.");
if (retValue) window.location = loc ;
}

function confirmBatchUpdate (loc)
{
retValue = window.confirm("This will import and update student demographic and program status with the latest enrollment records, are you sure?");
if (retValue) window.location = loc ;
}


//-->
