// Outpu the HTML/JS of the login box
function loginBox()
 {
  return('<div id="loginbox">'+
         ' <form id="il_login" method="post" action="http://www.dealtaker.com/content/dtc_actions.php">'+
         '  <label for="UserName" class="label50">User:</label>'+
         '  <input class="input100" name="UserName" id="UserName" type="text" />'+
         '  <div style="clear:both; width:100px; height:5px;"></div>'+
         '  <label for="PassWord" class="label50">Pass:</label>'+
         '  <input class="input100" name="PassWord" id="PassWord" type="password" />'+
         '  <div style="clear:both; width:100px; height:5px;"></div>'+
         '  <div class="spacer100">&nbsp; </div>'+
         '  <input type="submit" name="submit" id="submit" class="submit" value="Log-In" />'+
         '  <div style="clear:both; width:100px; height:5px;"></div>'+
         '  <label for="cookiedate" class="label133">Remember Me:</label>'+
         '  <input type="checkbox" checked="checked" value="" name="cookiedate" id="cookiedate" class="input15" />'+
         '  <div style="clear:both; float:left; width:190px;">'+
         '   <a href="http://www.dealtaker.com/index.php?act=Reg&CODE=10">Forgot Password?</a><br/>'+
         '   <a href="register.php">Register?</a>'+
         '  </div>'+
         '  <p style="display: none;">'+
         '   <input id="dt_core_login" type="hidden" value="1" name="dt_core_login"/>'+
         '   <input id="rp" type="hidden" value="http://'+location.hostname+'/" name="rp"/>'+
         '  </p>'+
         ' </form>'+
         '</div>');
 }