// navBullet.js
// ------------


// global vars used on 'navBullet' page...

var navBulletOn = new Image(); navBulletOn.src="images/navBulletOn.gif"
var navBulletOff = new Image(); navBulletOff.src="images/navBulletOff.gif"
var navBulletUp = new Image(); navBulletUp.src="images/navBulletUp.gif"
var navBulletDown = new Image(); navBulletDown.src="images/navBulletDown.gif"
var navBulletBack = new Image(); navBulletBack.src="images/navBulletBack.gif"
var navBulletHome = new Image(); navBulletHome.src="images/navBulletHome.gif"
		


// load an image into an anchor, and resets focus to remove browser hilights...

function image(imgName, imgGif) {

	if (document.images) {
		document[imgName].src = eval(imgGif);
		if (typeof(top.frames[0]) != "undefined") {
			top.frames[0].focus(); // removes 'highlight' from buttons frame, gives focus to 'navPage'
		}
	}
	return true;
}



// loads previous-page into 'navPage' frame...

function navPagePrev() {

	top.frames[0].window.history.back();
}


// loads top-of-page into 'navPage' frame...

function navPageTop() {

	var href= top.frames[0].window.location.href;
	var page = href.split("#");
	top.frames[0].window.location.href = page[0] + "#top";
}


// loads footer-of-page page into 'navPage' frame...

function navPageFooter() {

	var href= top.frames[0].window.location.href;
	var page = href.split("#");
	top.frames[0].window.location.href = page[0] + "#footer";
}


// loads main page into 'navPage' frame...

function navPageMain() {

	top.frames[0].window.location.href = "navMain.htm";
}


// end of navBullet.js