
//<![CDATA[
function CJL_getCurrentStyle(elem, prop)
{
   if( elem.currentStyle )
   {  
      var ar = prop.match(/\w[^-]*/g);
      var s = ar[0];
      
      for(var i = 1; i < ar.length; ++i)		   
      {
         s += ar[i].replace(/\w/, ar[i].charAt(0).toUpperCase());
      }
           
      return elem.currentStyle[s]
   }
   else if( document.defaultView.getComputedStyle )
   {
      return document.defaultView.getComputedStyle(elem, null).getPropertyValue(prop);
   }
}

onload = function()
{
  
document.getElementById("ccolor").innerHTML =
   CJL_getCurrentStyle(document.body, "font-family");

document.getElementById("dcolor").innerHTML =
   CJL_getCurrentStyle(document.body, "font-size");


}
//]]>




value="0"

document.write('<p><img src="../a/note.gif" align="absmiddle"> <img src="../a/screen.gif" align="absmiddle"> [<a href="0.htm" target="_top">Menu</a>]');
document.write('[<A href="javascript:SetCookie(nameOfCookie, this.value, exp); doRefresh();">Reset</a>]');
document.write(" <font color='#00ffff'>" + GetCookie(nameOfCookie) + "</font></p>");

document.write('<p><img src="../a/css.gif" align="absmiddle"> <span id="ccolor"></span>:');
document.write('<span id="dcolor"></span></p>');
