<!--
// Arrays to hold report info
var PicCaptions = new Array();
var PicFile = new Array();
var PicWidth = new Array();
var PicHeight = new Array();

function openindex(HeadCaption, PicFile, PicWidth, PicHeight)
      {
var PopupWindowName;

// Array to hold calculated window Top(0), Left(1), Width(2), and Height(3)
var WindowSize = new Array();
WindowSize = CalcWindowSize(PicWidth, PicHeight, '');

PicFile = "ReportSamples\\" + PicFile;
PopupWindowName = HeadCaption.replace(/ /g,"").substr(0,15);
OpenWindow=window.open("", PopupWindowName, "height="+WindowSize[3]+", width="+WindowSize[2]+", top="+WindowSize[0]+",left="+WindowSize[1]+",toolbar=no,,scrollbars=yes,resizable=yes,menubar=no");
OpenWindow.document.write("<TITLE>Ultimate Collection Control Reports</TITLE>");
OpenWindow.document.write('<LINK REL=STYLESHEET HREF="sss.css" TYPE="text/css">');
OpenWindow.document.write('<BODY>');
OpenWindow.document.write('<div class="Center"><img src="'+PicFile+'" alt="'+HeadCaption+'" width="'+PicWidth+'" height="'+PicHeight+'"></div>');
OpenWindow.document.write('<div class="Center"><br><a href="javascript:window.close();">Close Window</a></div>');
OpenWindow.document.write("</BODY>");
OpenWindow.document.write("</HTML>");
OpenWindow.focus();
OpenWindow.document.close();
self.name="main";
	}

PicCaptions[0] = "New Business"
PicFile[0] = "NewBusiness.gif"
PicWidth[0] = 673
PicHeight[0] = 313

PicCaptions[1] = "Creditor Placement Comparison"
PicFile[1] = "CreditorPlacementComparison.gif"
PicWidth[1] = 673
PicHeight[1] = 313

PicCaptions[2] = "Placements and Collection Analysis"
PicFile[2] = "PlacementsAndCollectionAnalysis.gif"
PicWidth[2] = 945
PicHeight[2] = 253

PicCaptions[3] = "Collection Analysis"
PicFile[3] = "CollectionAnalysis.gif"
PicWidth[3] = 976
PicHeight[3] = 316

PicCaptions[4] = "Collections By Collector"
PicFile[4] = "CollectionsByCollector.gif"
PicWidth[4] = 976
PicHeight[4] = 652

PicCaptions[5] = "Collections By Creditor"
PicFile[5] = "CollectionsByCreditor.gif"
PicWidth[5] = 976
PicHeight[5] = 532

PicCaptions[6] = "Collector Account"
PicFile[6] = "CollectorAccount.gif"
PicWidth[6] = 673
PicHeight[6] = 157

PicCaptions[7] = "Creditor Remittances Due To Be Paid"
PicFile[7] = "CreditorRemittances.gif"
PicWidth[7] = 673
PicHeight[7] = 481

PicCaptions[8] = "Placements by Territory"
PicFile[8] = "PlacementsByTerritory.gif"
PicWidth[8] = 673
PicHeight[8] = 250

PicCaptions[9] = "Claims by Creditor Review"
PicFile[9] = "ClaimsByCreditorReview.gif"
PicWidth[9] = 961
PicHeight[9] = 337

PicCaptions[10] = "Payments Received"
PicFile[10] = "PaymentsReceived.gif"
PicWidth[10] = 970
PicHeight[10] = 334
//-->