<!--
var version = parseInt (navigator.appVersion) ;
NS4 = (document.layers) ? true : false ;
IE4 = ((document.all) && (version >= 4)) ? true : false ;
DOM=document.documentElement&&!NS4;
ver4 = NS4 || IE4 || DOM;

if (NS4)
	{
	origWidth = innerWidth;
	origHeight = innerHeight;
	}
function reDo()
	{
	if (innerWidth != origWidth || innerHeight != origHeight)
		location.reload();
	}
if (NS4)
	onresize = reDo;

var firstItem = 0 ;
var lastItem ;
if (NS4)
	lastItem = document.layers.length - 1 ;
if (IE4)
	lastItem = document.all.tags ("DIV").length - 1 ;

function onClicked (el) {}
function onExpandAll () {}
function onCollapseAll () {}

function getIndexIE (el)
	{
	ind = -1 ;
	tempColl = document.all.tags ("DIV") ;
	for (i = 0 ; i < tempColl.length ; i++)
		{
		var theItem = tempColl (i) ;
		if (theItem == el)
			{
			ind = i ;
			break ;
			}
		}
	return ind ;
	}

function getFntSize(s)
	{
	if(!IE4)
		{
		if (s=="xx-small")
		return "x-small";
		if (s=="x-small")
		return "small";
		if (s=="small")
		return "medium";
		if (s=="medium")
		return "large";
		if (s=="large")
		return "x-large";
		if (s=="x-large")
		return "xx-large";
		}
	return s;
	}

if (ver4)
  {
  with (document)
	{
	write("<STYLE TYPE='text/css'>");
	write (".SXLP0:hover {color:#93DAF4;}") ;
	write (".SXLR:visited {color:#FFFFFF}") ;
	write (".SXLR:hover {color:#93DAF4;}") ;
	write (".SXLR,.SXR {color:#FFFFFF; font-family:Verdana,Arial,Helvetica; font-size:"+getFntSize("xx-small")+"; }") ;
	write (".SXLP0,.SXP0 {color:#FFFFFF; font-family:Verdana,Arial,Helvetica; font-size:"+getFntSize("xx-small")+"; }") ;
	write (".SXLP1:hover {color:#93DAF4;}") ;
	write (".SXLC0:visited {color:#FFFFFF}") ;
	write (".SXLC0:hover {color:#93DAF4;}") ;
	write (".SXLC0,.SXC0 {color:#FFFFFF; font-family:Verdana,Arial,Helvetica; font-size:"+getFntSize("xx-small")+"; }") ;
	write (".SXLP1,.SXP1 {color:#FFFFFF; font-family:Verdana,Arial,Helvetica; font-size:"+getFntSize("xx-small")+"; }") ;
	if (NS4)
		{
		write (".TP {position:relative}");
		leftpos = 10 ;
		toppos = 40 ;

		write (".below {left:"+leftpos+";position:absolute}") ;
		write (".im {vertical-align:top}") ;
		write (".SXP0 {left:"+leftpos+";position:absolute; visibility:hidden}") ;
		write (".SXR {left:"+leftpos+";position:absolute;top:"+toppos+";visibility:hidden}") ;
		write (".SXP1 {left:"+leftpos+";position:absolute; visibility:hidden}") ;
		write (".SXC0 {left:"+leftpos+";position:absolute;visibility:hidden}") ;
		write ("A{text-decoration:none}") ;
		write ("A:hover{text-decoration:underline}") ;
		}
	  else
		{
		write (".tbl {width='100%'}") ;
		write ("A{text-decoration:none}") ;
		write ("A:hover{text-decoration:underline}") ;
		}

	write("</STYLE>");
	}
  }
//-->
