// <!-- Begin

FormName  = "signUpForm"  //Name of the form - from the tag   form name=signUpForm


function docheck(w) {
	//set the check to true for document.form.list?
	
	eval("document." + FormName + "." +  w + ".checked=true");
}

function getRequestNum(page) {
	//based on the requesting page set a value number  
	// if page is ?????? then  report request value is nn 
	// the page is the document.referrer - the page the user came from
	// the report value number is the value clause on the ListID check box control on the users form
	
	// this is where the crosswalk from the sending pages to the intended report values occurs
	// if the user changes the values in any way or adds more or we need to add a page - it all
	// happens here
	
	if (page.search("dalaus.aspx") > -1) return "list1" ;      //Laus -  Civilian Labor Force, Employment, Unemployment and Rate
	if (page.search("largemp.aspx") > -1) return "list2" ;    //Large employers (Buisness tools)-  Large Employers  
	if (page.search("daces.aspx") > -1) return "list5" ;       //CES - State and Metro Area Industry Employment   
	if (page.search("daindustry.aspx") > -1) return "list4" ;  //QCEW - Industry Employment Annual-QCEW 	
	if (page.search("dacesnmc.aspx") > -1) return "list7" ;   //CES - Non-metro County Industry Employment Estimates    
	if (page.search("daindustry.aspx") > -1) return "list6" ; //QCEW -  Industry Employment Quarterly-QCEW 
	if (page.search("notyetavail.apsx") > -1) return "list9" ;  //Plant closing - Plant Closings/Mass Layoff Notices - no da query page yet
	if (page.search("daedswage.aspx") > -1) return "list8" ;  //County wages - County Wages and Employment by Occupation
	//if (page.search("") > -1) return "" ; //none
	if (page.search("daoeswage.aspx") > -1) return "list10" ;  //OES - Wisconsin Wages  
	//new line added 12/19/05 awc for county snapshot sub
	if (page.search("Cntysnap.aspx") > -1) return "list3" ;  //County Snapshot  
			
			
	return "999";  //default fall thru value
}

//  End -->