//pageIds used to recognize the top nav options are mapped as follows:
// Group ID :
//	0 - 'Contact Us' displayed as link
//	1 - 'Contact Us' displayed as text
//	2 - Special option for displaying 'French' option on english home page i.e. index.html


function displayHeader(pageid) {	
	document.write('<table border="0" cellspacing="0" cellpadding="0" width="716">');
	document.write('<tr><td width="173"><img src="images/firstline.gif" width="173" height="62" alt="FirstLine Mortgages"></td><td width="1"><img src="images/spacer.gif" width="1" height="1"></td><td width="1" class="redDark"><img src="images/spacer.gif" width="1" height="1"></td><td width="1"><img src="images/spacer.gif" width="1" height="1"></td>');
	document.write('<td width="540" valign="bottom" >');
	document.write('<table width="100%" border="0" cellspacing="0" cellpadding="4" height="21" class="redDark"><tr><td align="right" class="nav">');
	if(pageid == '1') {
		document.write('&nbsp;<font class="nav">Contact Us</font>');
	} else {
		document.write('&gt;&nbsp;<a href="/PDFs/fl_privacy_protect.pdf" class="nav">Privacy Information</a>');
		document.write('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt;&nbsp;<a href="/contactus.html" class="nav">Contact Us</a>');
	}
	if(pageid == '2') {
		//Index page header, display 'French' link
		document.write('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt;&nbsp;<a href="/french/index.html" class="nav">Francais</a>');
	}
	document.write('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt;&nbsp;<a href="/index.html" class="nav">Home</a></td></tr></table>');
	document.write('</td></tr></table>');
	document.write('<img src="images/spacer.gif" width="1" height="1"><br><table width="716" border="0" cellspacing="0" cellpadding="0" class="greyLight"><tr>    <td><img src="images/spacer.gif" width="1" height="1"></td>  </tr></table><img src="images/spacer.gif" width="1" height="1"><br>');	
}



