

<!--
hover = 
  (((navigator.appName == "Netscape") && 
  (parseInt(navigator.appVersion) >= 3 )) || 
  ((navigator.appName == "Microsoft Internet Explorer") && 
  (parseInt(navigator.appVersion) >= 4 )));

function preload(img) {
  var a=new Image(); a.src=img; return a; 
}

function lightup()
 {
   if (document.images)
    {   
      document.images.b.src = "http://www.nanric.com/images/nanriclightbulbsmallon.jpg";
    }
 }

function turnoff()
 {
   if (document.images)
    {
      document.images.b.src = "http://www.nanric.com/images/nanriclightbulbsmall.jpg";
    }
 }

function initGraphics() {
    if(hover)
	{
         preload('http://www.nanric.com/images/nav_buttons2.jpg'); 
         preload('http://www.nanric.com/images/lock.gif');
         preload('http://www.nanric.com/images/logo.jpg');
         preload('http://www.nanric.com/images/corner.jpg');
         preload('http://www.nanric.com/images/nanriclightbulbsmallon.jpg');
         preload('http://www.nanric.com/images/nanriclightbulbsmall.jpg');

	}
}

initGraphics()

// For Popup window
var factoidWindow = null
function openFactoid(file) {
    if (factoidWindow == null) {
        factoidWindow = window.open(file,"factoid","height=200,width=300")
        factoidWindow.focus()
        }
    else { 
        factoidWindow.location = file
        factoidWindow.focus()
        }
}

function jumptopage(obj)
{
//location.href="http://www.nanric.com/" + obj.value;
//alert(obj.value);
//alert(obj.options[obj.selectedIndex].value);
parent.window.location.href = obj.options[obj.selectedIndex].value;
}

// -->


