<!--

//Starts the IPS PDF Download popup window.
function DoDownload()
{
	var w = window.open("Wait.aspx?action=generate&r=" + GetRandom(),"IPSOutput",'width=650,height=600,directories=no,location=no,menubar=no,scrollbars=yes,status=yes,toolbar=no,resizable=yes,left=60,top=60,screenX=60,screenY=60');
	if (!w)
	{
		alert("You must enable popup windows for this site to ensure that the PDF Output feature functions.");
	}	
	return false;
}


//Starts the IPS PDF Download popup window for Master account.
function DoImmediateDownload()
{
    var w = window.open("../IPS/Output/Wait.aspx?action=generate&r=" + GetRandom(),"IPSOutput", "width=650,height=600,directories=no,location=no,menubar=no,scrollbars=yes,status=yes,toolbar=no,resizable=yes,left=60,top=60,screenX=60,screenY=60");
    if (!w)
	{
		alert("You must enable popup windows for this site to ensure that the PDF Output feature functions.");
	}	
	return false;
}


//-->

