// Top Table
function HotelsListTop(city,country){
 document.writeln('<br>') 
 document.writeln('<table width="770" align="center" border="0" cellspacing="0" cellpadding="0">') 
 document.writeln('  <tr> ') 
 document.writeln('    <td align="left" valign="top" height="8" colspan="3"><img src="../../../images/dot-bg-top.gif" width="770" height="8" border="0"></td>') 
 document.writeln('  </tr>') 
 document.writeln('  <tr> ') 
 document.writeln('    <td align="left" valign="top" width="9" background="../../../images/dot-bg-left.gif">&nbsp;</td>') 
 document.writeln('    <td align="left" valign="top" width="751" class="txt11px-hover"> ') 
 document.writeln('      <table width="100%" border="0" cellspacing="0" cellpadding="0">') 
 document.writeln('        <tr>') 
 document.writeln('          <td align="center" class="txt-normal" bgcolor="#DAE8F3"><h2>All Hotels list in ',city,', ',country,'</h2></td>') 
 document.writeln('        </tr>') 
 document.writeln('        <tr>') 
 document.writeln('          <td bgcolor="#FFFFFF"  height="2"></td>') 
 document.writeln('        </tr>') 
 document.writeln('      </table>') 
 document.writeln('      <table width="100%" border="0" cellspacing="10" cellpadding="0" align="center" bgcolor="#F5FBFE">') 
 document.writeln('		<tr> ') 
 document.writeln('		  <td align="left" valign="top" width="33%" bgcolor="#F5FBFE" class="txt11px-hover"> ') 
}

// Separate Between Column 1-2
function betweenCol1_2(){
 document.writeln('          </td>') 
 document.writeln('          <td align="left" valign="top" width="34%" bgcolor="#F5FBFE" class="txt11px-hover"> ') 
 }

// Separate Between Column 2-3
 function betweenCol2_3(){
 document.writeln('          </td>') 
 document.writeln('          <td align="left" valign="top" width="33%" bgcolor="#F5FBFE" class="txt11px-hover"> ') 
 }

// Down Table
 function HotelsListDown(){
 document.writeln('          </td>') 
 document.writeln('        </tr>') 
 document.writeln('      </table>') 
 document.writeln('    </td>') 
 document.writeln('    <td align="left" valign="top" width="10" background="../../../images/dot-bg-right.gif">&nbsp;</td>') 
 document.writeln('  </tr>') 
 document.writeln('  <tr> ') 
 document.writeln('    <td align="left" valign="top" height="8" colspan="3"><img src="../../../images/dot-bg-down.gif" width="770" height="8" border="0"></td>') 
 document.writeln('  </tr>') 
 document.writeln('<tr><td align="center" valign="top" height="5" colspan="3"><img src="../../../images/down-shadow.gif" width="770" height="5" border="0"></td></tr>')
 document.writeln('</table>')
 }