<!--
// browser detection
var dhtml = "";
var preload = 0;

browserName = navigator.appName; browserVer = parseInt(navigator.appVersion);
	if (browserName == "Netscape"
		&& browserVer >= 4) dhtml = "NS4";
	if (browserName == "Microsoft Internet Explorer"
		&& browserVer >= 4) dhtml = "MS4";
	if (browserName == "Netscape" && browserVer >= 3) preload = 1;
	if (dhtml == "NS4" || dhtml == "MS4") preload = 1;

// preload rollover images
if (preload) {
	b_home_shoponline_off = new Image(147,15);
	b_home_shoponline_off.src = "images/b_home_shoponline_off.gif";
	b_home_productsupport_off = new Image(147,15);
	b_home_productsupport_off.src = "images/b_home_productsupport_off.gif";
	b_home_ourinvestors_off = new Image(147,15);
	b_home_ourinvestors_off.src = "images/b_home_ourinvestors_off.gif";
			
	b_home_shoponline_on = new Image(147,15);
	b_home_shoponline_on.src = "images/b_home_shoponline_on.gif";
	b_home_productsupport_on = new Image(147,15);
	b_home_productsupport_on.src = "images/b_home_productsupport_on.gif";
	b_home_ourinvestors_on = new Image(147,15);
	b_home_ourinvestors_on.src = "images/b_home_ourinvestors_on.gif";
}

// function to change button image on rollover
function rollover(imgDocid,imgObjid) {
	if (preload) {
		document [imgDocid].src = eval(imgObjid + ".src");
	}
}

// function to open a new window
function popup(src,w,h) { 
	var scrW=800; 
	var scrH=600; 
	if (document.all || document.layers || document.getElementById) { 
		scrW=screen.availWidth; 
		scrH=screen.availHeight;
	}

	var leftPos = (scrW-w)/2;
	var topPos = (scrH-h)/2; 
	var tkeImg = window.open(src,"tkePop","height="+h+",width="+w+",top="+topPos+",left="+leftPos+",toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,directories=no,status=no");
	return tkeImg;
}

//-->