function buildbanner(){
	
	string = '';
	
  	string += '<table border="0" cellpadding="4" cellspacing="0" height="75" 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 width="100%" align="center" valign="bottom" class="bannerHeading" height="5">Welcome to Gotham Lofts Chicago </td>';
  	string += '<td bgcolor="#000000" width="170">&nbsp; </td> ';
  	string += '</tr>';
  	string += '</table>';	
	
	return string;

}

function writebanner(){
	document.write(buildbanner());
}

