function buildbanner(){
	
	string = '';
	
  	string += '<table border="0" cellpadding="4" cellspacing="0" height="110" width="100%" bgcolor="#000000">';
  	string += '<tr bgcolor="#000000">';
  	string += '<td bgcolor="#000000" width="100%">&nbsp;</td> ';
	string += '<td bgcolor="#000000" width="170" align="right" valign="top" class="globalNav"><img src="./assets/_blnk.gif" alt="" width="160" height="5" border="0"><BR>| <a class="globalNav" href="./index.html">home</a> | <a class="globalNav" href="./contacts.html">contact</a> | &nbsp;</td>	';
  	string += '</tr>';
  	string += '<tr>';
  	string += '<td align="center" valign="bottom" class="bannerHeading" height="5">Welcome to Gotham Lofts Chicago </td>';
  	string += '<td align="right" valign="bottom" bgcolor="#000000"class="globalNav">420 S Clinton<BR>417 S Jefferson<BR>Chicago, IL&nbsp;&nbsp;60607 </td> ';
  	string += '</tr>';
  	string += '</table>';	
	
	return string;

}

function writebanner(){
	document.write(buildbanner());
}

