/*
	Default Javascript functions
*/
<!--

//Macromedia Netscape Resize Fix-------------------------------------------------------------------------------------------------------
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);


//This function finds the URL where the page is located---------------------------------------------------------------------------------
function getURL() {
	//checks to see if the users browser is using the W3 DOM
	if (document.getElementById) {
		var getURL_ID = document.getElementById("getURL");
		getURL_ID.innerHTML = window.location.href;
	}
	//checks to see if the users browser is using N4 Layer DOM
	else if (document.layers) {
		//until I find a code that works here. Nothing will go here. :)
	}
	else if (document.all) {
		var getURL_ID = document.all("getURL");
		getURL_ID.innerHTML = window.location.href;
	}
}


//This function allows for Opening new Browser Windows------------------------------------------------------------------------------------

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


//This function allows for the Jump menu to work------------------------------------------------------------------------------------------
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

//-->

