/*this file is here so that if any future javascripts need to be added, they will be able to run successfully when the body tag is loaded*///array to hold reset functionsonLoadFunctions = new Array();//function to add functions to be run to reset the ajax statefunction addOnLoadFunction(funct) {	onLoadFunctions.push(funct);}function doOnLoadFunctions() {	for(var ii = 0; ii < onLoadFunctions.length; ii++)	{   onLoadFunctions[ii]();	}}function select_url() {   choice = document.mydataform.mydata;        parent.location.href=choice.options[choice.selectedIndex].value;}