    <!--
    function on(imgname)
    {
	var temp;
	temp = imgname + "_on.gif";
	document[imgname].src = "./header_images/" + temp;
    }

    function off(imgname)
    {
	var temp;
	temp = imgname + "_off.gif";
	document[imgname].src = "./header_images/" + temp;
    }

    function test()
    {
	document.write("document.write");
    }
   
    function startBold()
    {
	document.write("<B>");
    }

    function endBold()
    {
	document.write("</B>");
    }


    function InsertHeader()
    {
document.write("<!-- *** BEGIN HEADER *** -->");
document.write("<a href='index.html'>");
document.write("<img src='./header_images/header.gif' border=0>");
document.write("</a>");
document.write("<TABLE CELLPADDING=0 CELLSPACING=0 BORDER=0>");
document.write("	<TR valign='top' >");
document.write("		<TD><a href='services.html'>");
document.write("		    <img name='services' ");
document.write("			 border=0");
document.write("			 onmouseover='on(document[name].name)'  ");
document.write("			 onmouseout='off(document[name].name)'");
document.write("			 src='./header_images/services_off.gif'>");
document.write("		    </a>");
document.write("		</TD>");
document.write("		<TD><a href='history.html'>");
document.write("		    <img name='history'  ");
document.write("			 border=0");
document.write("			 onmouseover='on(document[name].name)'  ");
document.write("			 onmouseout='off(document[name].name)'");
document.write("			 src='./header_images/history_off.gif'>");
document.write("		    </a> ");
document.write("		</TD>");
document.write("		<TD><a href='partners.html'>");
document.write("		    <img name='partners' ");
document.write("			 border=0");
document.write("			 onmouseover='on(document[name].name)'  ");
document.write("			 onmouseout='off(document[name].name)'");
document.write("			 src='./header_images/partners_off.gif'>");
document.write("		    </a>");
document.write("		</TD>");
document.write("		<TD><a href='contact.html'>");
document.write("		    <img name='contact'  ");
document.write("			 border=0");
document.write("			 onmouseover='on(document[name].name)'  ");
document.write("			 onmouseout='off(document[name].name)'");
document.write("			 src='./header_images/contact_off.gif'>");
document.write("		    </a>");
document.write("		</TD>");
document.write("	</TR>");
document.write("</TABLE>");
document.write("<!-- *** END HEADER *** -->");
document.write("<BR>");
    }
    // -->
