function fillBottomNav() {
document.write("<td colspan=2 align='center' valign='top' bgcolor='#003366' id='bottomnav'>")
document.write("	<a href='home.htm'>Home</a> |")
document.write("	<a href='aboutRS.htm'>About Our Company</a> |")
document.write("	<a href='about.htm'>About HedgeFacts</a> |")
document.write("	<a href='HFReqInfo.aspx'>Request Info</a> |")
document.write("	<a href='fundadmin.htm'>Fund Administration</a><br>")
document.write("	<a href='portfolio.htm'>Porftolio Analytics</a> |")
document.write("	<a href='risk.htm'>Risk Reporting</a> |")
document.write("	<a href='transparency.htm'>Portfolio Transparency</a> |")
document.write("	<a href='hedgefunds.htm'>Hedge Funds</a><br>")
document.write("	<a href='managedaccounts.htm'>Managed Accounts</a> |")
document.write("	<a href='fundoffunds.htm'>Fund of Funds</a> |")
document.write("	<a href='news.aspx'>News</a> |")
document.write("	<a href='contact.htm'>Contact Us</a> |")
document.write("    <a href='sitemap.htm'>Site Map</z><br><br>")
}

function fillCopyright() {
dateVar = new Date(); 

document.write("<span id='copyright'>&copy; Copyright 2004 - ")
document.write(dateVar.getFullYear())
document.write(" HedgeFacts - All Rights Reserved.</span><br></td>")
}

function fillMenu(page) {

	var linktext = new Array(14)
	var linkhref = new Array(14) 
	linktext[0]="Home";
	linktext[1]="About Our Company";
	linktext[2]="About HedgeFacts"; 
	linktext[3]="Request Information";
	linktext[4]="News"; 
	linktext[5]="Contact Us";  
	linktext[6]="Fund Administration"; 
	linktext[7]="Portfolio Analytics"; 
	linktext[8]="Risk Reporting"; 
	linktext[9]="Portfolio<br>&nbsp;Transparency"; 
	linktext[10]="Hedge Funds"; 
	linktext[11]="Managed Accounts"; 
	linktext[12]="Fund of Funds"; 
	
	linkhref[0]="home.htm";
	linkhref[1]="aboutus.htm";
	linkhref[2]="about.htm";
	linkhref[3]="HFReqInfo.aspx";
	linkhref[4]="news.aspx";
	linkhref[5]="contact.htm";
	linkhref[6]="fundadmin.htm";
	linkhref[7]="portfolio.htm";
	linkhref[8]="risk.htm";
	linkhref[9]="transparency.htm";
	linkhref[10]="hedgefunds.htm";
	linkhref[11]="managedaccounts.htm";
	linkhref[12]="fundoffunds.htm";
	
	document.write("<td valign='top' bgcolor='#C1CDDA' class='menucell' width='125'>")

	var x=0; 
	for (x=0; x<13; x++)
	{ 
		if(x==page) {
			if (page==4)
			{
				document.write("<a href='")
				document.write(linkhref[x])
				document.write("' class='menulink'>")
				document.write(linktext[x])
				document.write("</a>")
			} else {
				document.write("<span class='currentlink'>")
				document.write(linktext[x])
				document.write("</span>")
			}
		} else {
			document.write("<a href='")
			document.write(linkhref[x])
			document.write("' class='menulink'>")
			document.write(linktext[x])
			document.write("</a>")
		}

		if(x==5 || x==9) {
		document.write("<img src='images/divider.gif' class='menudivider'>")
		}
	}

	document.write("<img src='images/divider.gif' class='menudivider'>")
	document.write("<table width='100%' border='0' cellpadding='0' cellspacing='0'>")
	document.write("<tr><td align='center' valign='top' class='menu2'>") 
	document.write("<form method='post' action='Referral/subscribe.aspx'>")
	document.write("<span style='font-size:9pt; font-family: arial; color: #000066'><br><b>Join Our Mailing List!</b>")
	document.write("<br><br>e-Mail Address:<br></span>")
	document.write("<input type='text' name='sender' style='WIDTH: 120px'><br>")
	document.write("<input type='hidden' name='stype' value='HF'>")
	document.write("<input type='submit' Value='Submit' style='width: 90px; font-family: arial; font-size: 10pt'><br><br>")
	document.write("<img src='images/divider.gif' class='menudivider'>")
	document.write("</form></td></tr></table></td>")

}