﻿
// -------	

function PrintOffers(strURL)
{
    var pframe = document.getElementById("pmgr");
    if (pframe != null)
    {
        pframe.src = strURL;
    }
}

// -------	
function PrintComplete(status)
{
   if (status == "13")
   {
     document.getElementById(appendToControls + "status").value = status;
   }
   else
   {
   document.getElementById(appendToControls + "status").value = "OK";		    
   }
   document.aspnetForm.submit();
}

// -------
function InstallComplete()
{
    checkInstall();
}

// -------
function InstallComplete1(status)
{
    if (status > 0 )
    {
        document.getElementById(appendToControls + "status").value = "OK";	
    }
    document.aspnetForm.submit();
}

