<!--
	var w,h;
	
	function getWH(y)
	{
		if (self.innerHeight) // ns + op
		{
		 	if (y) return(clip.height);
			else   return(clip.width);
		}
		else // ie
		{
			if (y) return(document.body.clientHeight);
			else   return(document.body.clientWidth);
		}
	}
	
	function displayStyle()
	{
		w=getWH(false);
		h=getWH(true );

		ww=w/4*3;
		hh=h/4*3;
		wScroll=30;
		if (ww/hh>316/350) ww=hh/350*316;
		if (ww/hh<316/350) hh=ww/316*350;
		ww=Math.round(ww);
		hh=Math.round(hh);

		document.writeln('<style type=text/css>');
		document.writeln('<!--');
		document.writeln('	.bt {font-family:verdana, arial, helvetica; font-weight:  bold; color:#404040; font-size:'+Math.min(Math.round(w/30),14)+'px;}');
		document.writeln('	.tt {font-family:verdana, arial, helvetica; font-weight:normal; color:#404040; font-size:'+Math.min(Math.round(w/30),14)+'px;}');
		document.writeln('// -->');
		document.writeln('</style>');
	}
	
	function displayCube()
	{
		document.writeln('<div style="position:absolute; left:0; top:0; width:'+(w-wScroll*2)+'px; height:'+h+'px; z-index:0; overflow:hidden;">');
		document.writeln('<table cellspacing=0 cellpadding=0 border=0 width='+w+' height='+h+'><tr><td width='+w+' height='+h+' align=center valign=middle><img src=/img/cube.gif width='+ww+' height='+hh+'></td></tr></table>');
		document.writeln('</div>');
	}
// -->
