function Is() {
	var agent = navigator.userAgent.toLowerCase();
	this.major = parseInt(navigator.appVersion);
	this.minor = parseFloat(navigator.appVersion);
	this.ns = ((agent.indexOf('mozilla') != -1) && (agent.indexOf('spoofer') == -1) && (agent.indexOf('compatible') == -1) && (agent.indexOf('opera') == -1) && (agent.indexOf('webtv') == -1));
	this.ns2 = (this.ns && (this.major == 2));
	this.ns3 = (this.ns && (this.major == 3));
	this.ns4 = (this.ns && (this.major == 4));
	this.ns6 = (this.ns && (this.major >= 5));
	this.ie = (agent.indexOf("msie") != -1);
	this.ie3 = (this.ie && (this.major < 4));
	this.ie4 = (this.ie && (this.major == 4) && (agent.indexOf("msie 5") == -1));
	this.ie5 = (this.ie && (this.major == 4) && (agent.indexOf("msie 5") != -1));
	this.ieX = (this.ie && !this.ie3 && !this.ie4);
	this.op3 = (agent.indexOf("opera") != -1);
	this.win = (agent.indexOf("win")!=-1);
	this.mac = (agent.indexOf("mac")!=-1);
	this.unix = (agent.indexOf("x11")!=-1);
}
	var is = new Is(); // Create a browser detection object

if (document.images) {
	img1on = new Image();    img1on.src =  "/img_nav/t1_on.gif";
	img2on = new Image();    img2on.src =  "/img_nav/t2_on.gif";
	img3on = new Image();    img3on.src =  "/img_nav/t3_on.gif";
	img4on = new Image();    img4on.src =  "/img_nav/t4_on.gif";
	img5on = new Image();    img5on.src =  "/img_nav/r1_on.gif";
	img6on = new Image();    img6on.src =  "/img_nav/r2_on.gif";
	img7on = new Image();    img7on.src =  "/img_nav/r3_on.gif";
	img8on = new Image();    img8on.src =  "/img_nav/r4_on.gif";

	img1off = new Image();   img1off.src =  "/img_nav/t1.gif";
	img2off = new Image();   img2off.src =  "/img_nav/t2.gif";
	img3off = new Image();   img3off.src =  "/img_nav/t3.gif";
	img4off =  new Image();  img4off.src =  "/img_nav/t4.gif";
	img5off =  new Image();  img5off.src =  "/img_nav/r1.gif";
	img6off =  new Image();  img6off.src =  "/img_nav/r2.gif";
	img7off =  new Image();  img7off.src =  "/img_nav/r3.gif";
	img8off =  new Image(); img8off.src =  "/img_nav/r4.gif";
	}

	function imgOn(imgName) {
		if (document.images) {
				document[imgName].src = eval(imgName + "on.src");
		}
	}

	function imgOff(imgName) {
		if (document.images) {
				document[imgName].src = eval(imgName + "off.src");
		}
	}


if(document.layers){
window.onResize=reloadNow;}
function reloadNow(){
document.location = document.location;
}

//Open Window
function Popper(theURL,winName,features) {
	newWin = window.open(theURL,winName,features);
	
}