

<!-- 
browser		= navigator.appName;
ie		= "Microsoft Internet Explorer";
netscape	= "Netscape";
os		= navigator.platform;
mac		= "MacPPC";

if (browser == netscape && os != mac) 	{
	document.write('<link rel="stylesheet" type="text/css" href="/css/win_nn.css">');
}
else if (browser == ie && os != mac)	{
	document.write('<link rel="stylesheet" type="text/css" href="/css/win_ie.css">');
}
else if (browser == netscape && os == mac) {
	document.write('<link rel="stylesheet" type="text/css" href="/css/mac_nn.css">');
}
else if (browser == ie && os == mac)	{
	document.write('<link rel="stylesheet" type="text/css" href="/css/mac_ie.css">');
}
else	{
	document.write('<link rel="stylesheet" type="text/css" href="/css/other.css">');
}

//-->



<!-- 
function openWindow(URL,winName,features) {
	window.open(URL,winName,features);
}
//-->



<!-- 
function jump(site) {
	if (site != "") {
		parent.location.href=site
	}
}
//-->

<!-- 
function jump_replace(site) {
	if (site != "") {
		location.replace(site);
		return;
	}
}
//-->

<!-- 
function jump_new(site) {
	if (site != "") {
		newwin=window.open('','_blank','toolbar=1,resizable=1,scrollbars=1,location=1,menubar=1,status=1,directories=1');
		newwin.location=site
	}
}
//-->

