var product = new Array("-- Please Select Application --");
var product_value = new Array("");

var product01 = new Array("-- Select All --","Assembly", "Automotive", "Bottling and canning","Electronic Assembly","Fabrication","Food processing","Inspection","Laboratory","Light fabrication","Packaging","Painting","Small Parts Assembly");
var product01_value = new Array("","01", "02", "03","04","05","06","17","07","08","09","10","11");

var product02 = new Array("-- Select All --","Cleanup","Construction","Gardening","Janitorial","Landscaping","Maintenance","Material Handling","Tile Work","Tool Handling","Transportation");
var product02_value = new Array("","13","14","15","18","19","20","21","22","23","24");

var product03 = new Array("-- Select All --","Oily Equipment","Chemical Handling","Commercial Fishing","Petrochemicals","Refining");
var product03_value = new Array("","25","26","27","28","29");

var product04 = new Array("-- Select All --","Glass Handling","Recycling","Sheet Metal Work");
var product04_value = new Array("","30","31","32");

var product05 = new Array("-- Select All --","Agriculture","Cold Storage", "General Purpose","Other Cold Environment", "Outdoor Sporting");
var product05_value = new Array("","12","33","16","34","35");


function swapOptions(the_array_name)
{
//if(the_array_name == "") return;	
 var the_array = eval("product" + the_array_name);
 var the_arry_value=eval("product" + the_array_name + "_value");
 
 	 
 setOptionText(window.document.frmSrch.IND, the_array,the_arry_value);
}

function setOptionText(the_select,the_array,the_arry_value)
{
the_select.options.length=the_array.length
	
 for (loop=0; loop < the_array.length; loop++)
 {
  the_select.options[loop].text = the_array[loop];
  the_select.options[loop].value = the_arry_value[loop];
 }
}

