if (document.images) { // Active Images
     menu1on = new Image();
     menu1on.src = "Media/nav-01-on.gif";
     menu2on = new Image();
     menu2on.src = "Media/nav-02-on.gif";
     menu3on = new Image();
     menu3on.src = "Media/nav-03-on.gif";
	 menu4on = new Image();
     menu4on.src = "Media/nav-04-on.gif";
	 menu5on = new Image();
     menu5on.src = "Media/nav-05-on.gif";
	 menu6on = new Image();
     menu6on.src = "Media/nav-06-on.gif";
	 menu7on = new Image();
     menu7on.src = "Media/nav-07-on.gif";
	 menu8on = new Image();
     menu8on.src = "Media/nav-08-on.gif";
	 menu9on = new Image();
     menu9on.src = "Media/nav-09-on.gif";
	 menu10on = new Image();
     menu10on.src = "Media/nav-10-on.gif";
	 menu11on = new Image();
     menu11on.src = "Media/nav-11-on.gif";
	 menu12on = new Image();
     menu12on.src = "Media/nav-12-on.gif";
	 menu13on = new Image();
     menu13on.src = "Media/nav-13-on.gif";
	 menu14on = new Image();
     menu14on.src = "Media/nav-14-on.gif";
	 /*-------------sub nav starts at 30-------------------------*/
	 menu30on = new Image();
     menu30on.src = "Media/sub-nav-01-on.gif";
	 menu31on = new Image();
     menu31on.src = "Media/sub-nav-02-on.gif";
	 menu32on = new Image();
     menu32on.src = "Media/sub-nav-03-on.gif";
	 menu33on = new Image();
     menu33on.src = "Media/sub-nav-04-on.gif";
	 menu34on = new Image();
     menu34on.src = "Media/sub-nav-05-on.gif";
	 menu35on = new Image();
	 menu35on.src = "Media/sub-nav-08-on.gif";
	/*-------------end sub nav-------------------------*/
     menu1off = new Image();
     menu1off.src = "Media/nav-01-off.gif";
     menu2off = new Image();
     menu2off.src = "Media/nav-02-off.gif";
     menu3off = new Image();
     menu3off.src = "Media/nav-03-off.gif";
	 menu4off = new Image();
     menu4off.src = "Media/nav-04-off.gif";
	 menu5off = new Image();
     menu5off.src = "Media/nav-05-off.gif";
	 menu6off = new Image();
     menu6off.src = "Media/nav-06-off.gif";
	 menu7off = new Image();
     menu7off.src = "Media/nav-07-off.gif";
	 menu8off = new Image();
     menu8off.src = "Media/nav-08-off.gif";
	 menu9off = new Image();
     menu9off.src = "Media/nav-09-off.gif";
	 menu10off = new Image();
     menu10off.src = "Media/nav-10-off.gif";
	 menu11off = new Image();
     menu11off.src = "Media/nav-11-off.gif";
	 menu12off = new Image();
     menu12off.src = "Media/nav-12-off.gif";
	 menu13off = new Image();
     menu13off.src = "Media/nav-13-off.gif";
	 menu14off = new Image();
     menu14off.src = "Media/nav-14-off.gif";
	 /*-------------sub nav starts at 30-------------------------*/
	 menu30off = new Image();
     menu30off.src = "Media/sub-nav-01-off.gif";
	 menu31off = new Image();
     menu31off.src = "Media/sub-nav-02-off.gif";
	 menu32off = new Image();
     menu32off.src = "Media/sub-nav-03-off.gif";
	 menu33off = new Image();
     menu33off.src = "Media/sub-nav-04-off.gif";
	 menu34off = new Image();
     menu34off.src = "Media/sub-nav-05-off.gif";
	 menu35off = new Image();
	 menu35off.src = "Media/sub-nav-08-off.gif";
	 /*-------------end sub nav-------------------------*/
     menunote1on = new Image();
     menunote1on.src = "Media/external-01-on.jpg";
     menunote2on = new Image();
     menunote2on.src = "Media/external-02-on.jpg";
     menunote3on = new Image();
     menunote3on.src = "Media/external-03-on.jpg";
	 menunote4on = new Image();
     menunote4on.src = "Media/external-04-on.jpg";
	 menunote5on = new Image();
     menunote5on.src = "Media/external-05-on.jpg";
	 menunote6on = new Image();
     menunote6on.src = "Media/external-06-on.jpg";
	 menunote7on = new Image();
     menunote7on.src = "Media/external-07-on.jpg";
	 menunote8on = new Image();
     menunote8on.src = "Media/external-08-on.jpg";
	 menunote9on = new Image();
     menunote9on.src = "Media/external-09-on.jpg";
	 menunote10on = new Image();
     menunote10on.src = "Media/external-10-on.jpg";
	 menunote11on = new Image();
     menunote11on.src = "Media/external-11-on.jpg";
	 menunote12on = new Image();
     menunote12on.src = "Media/external-12-on.jpg";
	 menunote13on = new Image();
     menunote13on.src = "Media/external-13-on.jpg";
	 menunote14on = new Image();
	 menunote14on.src = "Media/external-14-on.jpg";
    //menunote14on.src = "Media/trans2x2.gif";
     menunote15on = new Image();
     menunote15on.src = "Media/trans2x2.gif";
     menunoteoff = new Image();
     menunoteoff.src = "Media/trans2x2.gif";
	 
	 

   }

// Function to 'activate' menu images.
function menuOn(bar,imgNr) {
   var imgSub = "";
   var noteSub = "";
   if (document.images) {
     imgSub = bar+imgNr;
     noteSub = bar+"note";
     document[imgSub].src = eval(bar + imgNr + "on.src");
     document[noteSub].src = eval( bar + "note" + imgNr + "on.src");
   }
}

// Function to 'deactivate' menu images.
function menuOff(bar,imgNr) {
   var imgSub = "";
   var noteSub = "";
   if (document.images) {
     imgSub = bar+imgNr;
     noteSub = bar+"note";
     document[imgSub].src = eval(bar + imgNr + "off.src");
     document[noteSub].src = eval( bar + "noteoff.src");
   }
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function newPopUp(newurl,newname,x,y) {
apopup = window.open(newurl,newname,'toolbar=no,location=no,directories=no,status=yes,scrollbars=no,resizable=no,copyhistory=no,width='+x+',height='+y);}

function get_state() {
document.hold.channel.value = opener.name;
}
