MAC = navigator.userAgent.indexOf('Mac') != -1;
NN = navigator.appName.indexOf('Netscape') != -1;
IE = navigator.appName.indexOf('Microsoft') != -1;
VER = navigator.appVersion.charAt(0);

function news(){
var s = "newwindow = window.open('news/news.html','news','toolbar=yes,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=500,height=500');";
	eval(s);
	if (NN) {
		setTimeout('newwindow.focus()',0);
	}
	else
	{
		newwindow.focus();
	}
}
