﻿// JScript File

function apgfConfirm(obj,ConfirmText,CallBackYes,CallBackNo,Params)
{
	document.getElementById("apgfconfirmlabel").innerHTML = ConfirmText;
    document.getElementById("apgfconfirmyes").value = CallBackYes;
    document.getElementById("apgfconfirmno").value = CallBackNo;
    document.getElementById("apgfconfirmparams").value = Params; 
    document.getElementById("apgfconfirmdiv").style.display = 'block';
}

function apgfConfirmReturnYes()
{
    document.getElementById("apgfconfirmdiv").style.display = 'none';
    if (document.getElementById("apgfconfirmyes").value != '')
    {
        window[document.getElementById("apgfconfirmyes").value](document.getElementById("apgfconfirmparams").value); 
    }
}

function apgfConfirmReturnNo()
{
    document.getElementById("apgfconfirmdiv").style.display = 'none';
    if (document.getElementById("apgfconfirmno").value != '')
    {
        window[document.getElementById("apgfconfirmno").value](document.getElementById("apgfconfirmparams").value);
    }
}
