var kNetscape4 = 1, kNotNetscape = 0;var theBrowser;function print(theText){	document.write(theText);}	// printfunction TestBrowser(){	if (navigator.appName.indexOf("Netscape") >= 0)	{		if (navigator.appVersion.indexOf("4.") >= 0)		{			theBrowser = kNetscape4;			return;		}	// if	}	// if		theBrowser = kNotNetscape;}	// TestBrowserfunction LoadCSS(){	if (theBrowser != kNetscape4)		print("<link rel=\"stylesheet\" type=\"text/css\" href=\"http://www.lucius-hartmann.ch/stylesplus.css\" />\n");}	// LoadCSSfunction PrintApplet(theName,theWidth,theHeight,theCodebase){	print('<applet code="'+theName+'" width="');		if (theBrowser != kNetscape4)		print('100%');	else		print(theWidth);		if (theCodebase != '')		print('" codebase="'+theCodebase);				print('" height="'+theHeight+'">\n');}	// PrintAppletTestBrowser();LoadCSS();