	function HotButtonOn (caption, href) 
	{
		sgquot="'";
		document.write ('<TABLE WIDTH="100%" CELLPADDING="2" BACKGROUND="buttonsbg.jpg">');
		document.write ('<TR>');
		document.write ('<TD CLASS="menutext" HEIGHT="16"');
		document.write ('   BACKGROUND="btnface_i.jpg"');
		document.write ('   ALIGN="CENTER"');
		document.write ('   ONMOUSEOVER=', sgquot, 'this.style.backgroundImage="url(btnface_il.jpg)"', sgquot);
		document.write ('   ONMOUSEOUT=', sgquot, 'this.style.backgroundImage="url(btnface_i.jpg)"', sgquot);
		document.write ('   STYLE="cursor: hand; cursor:pointer">');
		document.write ('<B CLASS="menutext">',caption,'</B></TD>')
		document.write ('</TR>')
		document.write ('</TABLE>')
	}
	
	function HotButtonOff (caption, href)
	{
		sgquot="'";
		document.write ('<TABLE WIDTH="100%" CELLPADDING="2" BACKGROUND="buttonsbg.jpg">');
		document.write ('<TR>');
		document.write ('<TD CLASS="menutext" HEIGHT="16"')
		document.write ('   BACKGROUND="btnface_o.jpg"')
		document.write ('   ALIGN="CENTER"');
		
		document.write ('   ONMOUSEOVER=', sgquot, 'this.style.backgroundImage="url(btnface_ol.jpg)"', sgquot);
		
		document.write ('   ONMOUSEOUT=', sgquot, 'this.style.backgroundImage="url(btnface_o.jpg)"', sgquot);
		
		document.write ('   STYLE="cursor: hand;cursor:pointer"');
		document.write ('   ONCLICK=', sgquot, 'document.location.href="', href,'"', sgquot, '>');
		document.write ('<B CLASS="menutext"><A HREF="',href,'"');
		document.write ('STYLE="text-decoration: none; color: black">',caption,'</A></B></TD>')
		document.write ('</TR>')
		document.write ('</TABLE>')	
	}