  var w = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    w = window.innerWidth;
    h = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    w = document.documentElement.clientWidth;
    h = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    w = document.body.clientWidth;
    h = document.body.clientHeight;
  }

document.write('<applet name="DJIA"');
document.write('" codebase="." code="ca.antaki.www.djia.DJIA.class"');
document.write('" archive="DJIA.jar"');
document.write('" width="100%" height="100%" alt="You need the Java plugin to view this applet">' 
			   + '<param name="boxmessage" value="DJIA 1.0">' 
			   + '<PARAM NAME="centerimage" VALUE="true">'
			   +'<PARAM name="draggable" value="true">'
			   + '<param name="pollingDelay" value="3000">'
			   + '<param name="URL" value="http://download.finance.yahoo.com/d/quotes.csv?s=@%5EDJI&f=sl1d1t1c1ohgv&e=.csv&h=0">'
			   + '<PARAM name="image" value="wait30.gif"/>');
			  

document.write('<\/applet>');

