NA = navigator.appName
NV = navigator.appVersion
IE = NA == "Microsoft Internet Explorer"
NN = NA == "Netscape"
N5 = null
N6 = null
	if(NN){
	 	N5 = NV.indexOf(5) != 0;
		N6 = NV.indexOf(5) == 0
	}

var browserVersion=0;
browserVersion=navigator.userAgent.substring(8,9)

if (browserVersion>=3) {

	home = new Image();
	home.src = "/images/home.gif";
	home2 = new Image();
	home2.src = "/images/home_over.gif";
	about = new Image();
	about.src = "/images/about.gif";
	about2 = new Image();
	about2.src = "/images/about_over.gif";
	test = new Image();
	test.src = "/images/testimonials.gif";
	test2 = new Image();
	test2.src = "/images/testimonials_over.gif";
	products = new Image();
	products.src = "/images/products.gif";
	products2 = new Image();
	products2.src = "/images/products_over.gif";
	contact = new Image();
	contact.src = "/images/contact.gif";
	contact2 = new Image();
	contact2.src = "/images/contact_over.gif";
	links = new Image();
	links.src = "/images/links.gif";
	links2 = new Image();
	links2.src = "/images/links_over.gif";
	business = new Image();
	business.src = "/images/business.gif";
	business2 = new Image();
	business2.src = "/images/business_over.gif";
}

function highlight(imageName,imageState) {
	if (browserVersion>=3) {
		document.all[imageName].src = eval(imageState + ".src");
		document.all[imageName].src = eval(imageState + ".src");	
	}
}

var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}
