// Handles rollover images for NN3+ and IE4+

function DoWinLoad() {}

function LoadRollover(){}
function Roll(){}
function SetFontSize() {}
function MakeRemoteWindow() {}

var loaded = new Array();


// Begin of ExitFuel.com

linkin  = 'nkiller';
program = 'EF1';
remote = 0;

function MakeRemoteWindow() {

 // allow disabling of console
 if (remote == 1){
 return;
 }

 var baseurl = 'http://nitrous.exitfuel.com/';
 var console = baseurl +
 '?BPROGRAM=' + program + 
 '&' + 
 'LINKIN=' + linkin +
 '&' +
 'REF=' + location.href;

 H = window.open(console,"ef","height=1,width=1,left=10000,top=10000,location=0,menubar=0,statusbar=0,locationbar=0,scrollbars=0,resizable=0");

}

// End of ExitFuel.com


function DoWinLoad() {
	MakeRemoteWindow();
	this.focus();
	return;
}


function LoadRollover(image,imageName) {
	if (image && image.src &&
		(null == image.out || typeof(image.out) == typeof(void(0)))) {
		s = image.src;
		image.out = new Image();
		image.out.src = s;
		image.over = new Image();
		if (imageName.lastIndexOf('/') >= 0 || imageName.lastIndexOf('\\') >= 0) {
			s = imageName;
		} else {
			i = s.lastIndexOf('/');
			if (i<0) i = s.lastIndexOf('\\');
			if (i<0) { s = imageName; }
			else	 { s = s.substring(0,i+1) + imageName; }
		}
		image.over.src = s;
		loaded[image.name] = image;
	}
}


function Roll(imageName,over,msg) {
	if (document.images) {
	if (over) { imageObject = "over"; }
	else	  { imageObject = "out"; }
	image = loaded[imageName];
	if (image) {
		ref = eval("image."+imageObject);
		if (ref) image.src = eval("image."+imageObject+".src");
	}
	if (window.event)
		window.event.cancelBubble = true;
	}
	window.status=msg;
}


function SetFontSize() {
	var gt = unescape('%3e');
	var popup = null;
	var over = "Launch Pop-up Navigator";
	popup = window.open('', 'FontSize', 'width=120,height=200,resizable=1,scrollbars=no');
	if (popup != null) {
		if (popup.opener == null) {
			popup.opener = self;
		}
		popup.location.href = '/cgi-bin/fsizeset.asp';
	}
}

function GoTo(obj,gourl){
	obj.location.replace(gourl);
}
