//This file contains information specific to fiscal year audit reports.
//You need to enter data below. Instructions are provided.

//directoryYear indicates the directory that the audit reports
//are located. if you enter 2004 (no quotes), then the directory would be
//"2004reports". for older reports, leave as "" to set the directory
//to "reports"
var directoryYear=2008; 


//prevYear and currYear are the starting and ending years for the fiscal year
//FY2005 would give a prevYear of 2004 and currYear of 2006
var prevYear=2007;
var currYear=2008;


//Do not alter this line
var arrid=new Array();


//Now to create the array of audit report data
//The format of the array is
//(report id, report description, date string, business unit, report count, executive summary, management response, audit comments)
//***
//report id is the Identification # noted on each report
//***
//report description is the title noted on each report
//***
//date string is in the following format
//####@@%%
//#### = 4 character year
//@@ = 2 character month
//%% = 2 character day
//***
//business unit can be one of the following
//"HOP", "ISP", "SBP","WIP", or "I&E"
//***
//report count,executive summary,management response,audit comments are
//indicated by the number of documents that exist
//0=none;1=one document;2=two documents;etc
//***
//if a quotation mark (") exists in any text in a field, change to \"
//***
//Errors within an array are usually caused by quotes in text, not following
//the proper format - so be careful
//***
//the following should be within quotes
//report id,report description,date string,business unit


//****ARRAY STARTS HERE
//***October 2008***

arrid[0]=new AR("2008IER001","Additional Enhancements Could Further Strengthen Lockbox Bank Oversight", "20080905","09",2,0,0,0);

arrid[1]=new AR("2008IER002","The Program to Protect Hardcopy Personally Identifiable Information Is a Work-in-Progress", "20080912","08",2,0,0,0);



//****ARRAY ENDS HERE


//***Do Not Alter Below
function AR(did,ddesc,ddates,dbu,drc,des,dmr,dac){
this.did=did;
this.ddesc=ddesc;
this.ddates=ddates;
this.dbu=dbu;
this.drc=drc;
this.des=des;
this.dmr=dmr;
this.dac=dac;
}

