<!--
function fixedsize() {
	netscape = (navigator.appName == "Netscape");
	n4 = netscape && (parseInt(navigator.appVersion) >= 4);
	explorer = (navigator.appName == "Microsoft Internet Explorer");
	ie = explorer && (parseInt(navigator.appVersion) >= 4);
	ie4 = explorer && (parseInt(navigator.appVersion) == 4);
	ie5 = explorer && (navigator.appVersion.indexOf('MSIE 5') > 0);
	mac = navigator.userAgent.indexOf('Mac') > 0;
	win = navigator.userAgent.indexOf('Win') > 0;

	if (mac) {
	  newwin=window.open("open1.htm","","resizable=no")
	//  if (document.all){
		newwin.moveTo(0,0);
		newwin.resizeTo(screen.width,screen.height);
	//  }
	}
	else {
	  if (ie) {
		window.open("open1.htm","","fullscreen=yes,width = 1024, height = 768,scrollbars=no,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=no,dependent=no");
	  } else {
		newwin=window.open("open1.htm")
		if (document.all){
		  newwin.moveTo(0,0);
		  newwin.resizeTo(screen.width,screen.height);
		}
	  }
	}
}
// end script here -->