<!--
function fix()
{
//debug	alert ("1");
//	document.layers['menu1'].visibility = "show"
//	document.all.menu1.style.visibility = "show"
//	document.layers[0].document.layers[0].visibility = "show"

//debug	alert ("2");
	if (document.layers)  //Netscape 4.5
	{
		document.layers[0].document.layers[0].visibility = "visible";
	}
	else if (document.getElementById)  //IE and NS6
	{
		document.getElementById('menu1').style.visibility = "visible"; 
	} 
//debug	alert ("3");
}
function activate()

        {

        thenumber = document.theform.thepulldown.selectedIndex;

        changeto =

document.theform.thepulldown.options[thenumber].value;

        if (changeto == "gonowhere")

                {

                // do nothing

                
}

        else

                {

                self.location = changeto

                }

        }





function automatic()

        {

        thenumber = document.theform.thepulldown.selectedIndex;

        changeto =

document.theform.thepulldown.options[thenumber].value;

        if (changeto == "gonowhere")

                {

                // do nothing


}

        else

                {

                self.location = changeto

                }

        }

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		Subpage_05_over = newImage("images/Subpage_05-over.gif");
		Subpage_06_over = newImage("images/Subpage_06-over.gif");
		Subpage_07_over = newImage("images/Button_ALR.gif");
		Subpage_08_over = newImage("images/Subpage_08-over.gif");
		Subpage_09_over = newImage("images/Subpage_09-over.gif");
		Subpage_10_over = newImage("images/Subpage_10-over.gif");
		Subpage_11_over = newImage("images/Subpage_11-over.gif");
		Subpage_13_over = newImage("images/Subpage_13-over.gif");
		Subpage_14_over = newImage("images/Subpage_14-over.gif");
		Subpage_15_over = newImage("images/Subpage_15-over.gif");
		Subpage_16_over = newImage("images/Subpage_16-over.gif");
		Subpage_17_over = newImage("images/Subpage_17-over.gif");
		Subpage_18_over = newImage("images/Subpage_18-over.gif");
		preloadFlag = true;
	}
}

   function popup(url) {
    newWindow = window.open(url,'newWindow','toolbar,location,directories,status,menubar,scrollbars,resizeable=yes');
    self.name = "mainWindow";
    if (window.screen) {
		var aw = screen.availWidth;
		var ah = screen.availHeight;
	//	newWindow.moveTo(0,0);
	//	newWindow.resizeTo(aw, ah);
    }
    newWindow.focus();
   }

// -->

