var uagent=navigator.userAgent.toLowerCase();
var isIE=false;
var isNS=false;
var isOther=true;
if (uagent.indexOf("msie")!=-1) {
  isIE=true;
 isOther=false;
} else {
  if (uagent.indexOf("mozilla")!=-1) {
     isNS=true;
	 isOther=false;
  }
}
if (isIE) {
document.styleSheets("mystyles").addRule("P","font-size:x-small;");
document.styleSheets("mystyles").addRule("LI","font-size:x-small;");
}
if (isNS) {
document.tags.P.fontSize="small";
document.tags.OL.fontSize="small";
document.tags.UL.fontSize="small";
document.classes.footer.TD.fontSize="x-small";
}

