function isWindows() {
	return (navigator.appVersion.indexOf("Win") != -1)
	}
function isLevel4() {
	return (navigator.appVersion.charAt(0) <= 4)
	}
function isNetscape() {
	return (navigator.appName == "Netscape")
	}
if (isLevel4()&&isNetscape()) {
	document.write("<STYLE TYPE=\"text/css\">")
	document.write('.newsAttribution {  font-size: small}');
	document.write('.newsFullStoryLink {  font-size: small; background-color: #DDDDDD}');
	document.write('.newsItemCopy {  font-size: small}');
    document.write("</STYLE>")
}

