//this function includes all necessary js files for the application
function include(file)
{
  var script  = document.createElement('script');
  script.src  = file;
  script.type = 'text/javascript';
  script.defer = true;

  document.getElementsByTagName('head').item(0).appendChild(script);
}

function addOption(selectbox,text,value )
{
	var optn = document.createElement("OPTION");
	optn.text = text;
	optn.value = value;
	selectbox.options.add(optn);
}

function LoadCategoryLocation()
{
   for (var i=0; i < category.length;i+=2){
     addOption(document.all.dd_category, category[i+1], category[i]);
  }
   for (var i=0; i < classLocation.length;i+=2){
     addOption(document.all.dd_location, classLocation[i+1], classLocation[i]);
  }  
}
/* include any js files here */
//include('/LmsWeb/JavaScript/Dynamic/AutoGenerated/CategoryLocationData.js');