function setStatus(newStat) { window.status = newStat; return true; }


//Popup Window Script
//By JavaScript Kit (http://javascriptkit.com)
function popupForm(popurl){
var win1=window.open(popurl,"popForm","width=600,height=400,scrollbars,resizable,");
win1.focus();
}



// <!--HUMVEE_PB_SCROLLTEXT_BEGIN - DO NOT MODIFY THIS SECTION!-->
var timeID = 0;
var count = 0;
var totalCount = 1;
var m1 = "     ";
var m2 = "Dinner Specials:  Monday & Thursday -- All you can eat for $13.95 ...... ";
var m3 = "     ";
var text = m1 + m2 + m3;

function text_scroller () {
  window.status = text.substring(count, text.length) + 
                  text.substring(0, count);
  if (count < text.length)
    count++;
  else if (count == text.length) {
    totalCount++;
    count = 0;
  }
  else
    count = 0;

  if (totalCount != 100)
    setTimeout("text_scroller()", 68);
}

function delay () {
  clearTimeout();
}
// <!--HUMVEE_PB_SCROLLTEXT_END-->


