// JavaScript Document
if (document.images) {

                        img1on = new Image(185,30);
                        img1on.src = "images/nav-mission-on.gif"
                        img2on = new Image(185,30);
                        img2on.src = "images/nav-calendar-on.gif"
                        img3on = new Image(185,30);
                        img3on.src = "images/nav-event-on.gif"
                        img4on = new Image(185,30);
                        img4on.src = "images/nav-archive-on.gif"
                        img5on = new Image(185,30);
                        img5on.src = "images/nav-space-on.gif"
						img6on = new Image(185,30);
                        img6on.src = "images/nav-contact-on.gif"			
                                           
                        img1off = new Image(185,30);
                        img1off.src = "images/nav-mission.gif"
                        img2off = new Image(185,30);
                        img2off.src = "images/nav-calendar.gif"
                        img3off = new Image(185,30);
                        img3off.src = "images/nav-event.gif"
                        img4off = new Image(185,30);
                        img4off.src = "images/nav-archive.gif"
                        img5off = new Image(185,30);
                        img5off.src = "images/nav-space.gif"
						img6off = new Image(185,30);
                        img6off.src = "images/nav-contact.gif"                     
                }
                
                // load over image
                
                function imgOn(imgName) {
                        
                        if (document.images) {
                                document[imgName].src = eval(imgName + "on.src");
                        }
                }
                
                // unswap for out image
                
                function imgOff(imgName) {
                        
                        if (document.images) {
                                document[imgName].src = eval(imgName + "off.src");
                        }
				}

//Popup Window
function makeRemote(mypage,myname,w,h,scroll) {
var winl = (screen.width-w)/2;
var wint = (screen.height-h)/2;
settings='height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',toolbar=no,location=no,status=no,menubar=no,resizable=no,dependent=no'
remote=window.open(mypage,myname,settings);

	if (remote.opener == null) remote.opener = window;
remote.opener.name = "opener";
}

