//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 'English' option on french home page i.e. index.html


function displayHeader(pageid) {

	document.write('<table border="0" cellspacing="0" cellpadding="0" width="716">');
	
    if(pageid == '1' || pageid == '0') {
	document.write('<tr><td width="173"><img src="images/firstline_fr.gif" width="173" height="62" alt="Hypothèques FirstLine"></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>');
	}
	
	if(pageid == '2') {
	document.write('<tr><td width="173"><img src="images/firstline_fr.gif" width="173" height="62" alt="Hypothèques FirstLine"></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">Communiquez avec nous</font>');
	} else {
		document.write('&gt;&nbsp;<a href="/PDFs/fl_privacy_protect_fr.pdf" ');
		document.write('class="nav">Protection des renseignements personnels</a>');
		document.write('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt;&nbsp;<a href="/french/');
		document.write('contactus.html" class="nav">Communiquez avec nous</a>');
	}	
	if(pageid == '2') {
		document.write('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt;&nbsp;<a href="/index.html" class="nav">English</a>');
	}
	
	document.write('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt;&nbsp;<a href="/french/');
	document.write('index.html" class="nav">Accueil</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>');
	
}

