// courserewards.js

<!--

 function sendTo(dest)
 {
  top.document.location = dest;
 }

 function highlightMenuTab(id)
 {
  var obj = document.getElementById(id);
  if( obj ) obj.className = "highlighted";
 }

 function _check4prod()
 {
  if( document.location.host.match(/^www\.courserewards\.com/) ||
      document.location.host.match(/^courserewards\.com/) ) return(true);

  return(false);
 }

 function _drawMenuBar()
 {
  document.writeln( "<div id=\"nav\">" );
  document.writeln( "<table class=\"menubar\" width=\"760\" height=\"32\" border=\"0\" cellspacing=\"0\" cellpadding=\"8\">");
  document.writeln( "<tr>" );
  document.writeln( "<td id=\"menuBarHome\" style=\"border-left: 1px solid #ffffff\" onclick=\"sendTo('/')\"><a href=\"/\">Home</a></td>" );

  document.writeln( "<td id=\"menuBarRewards\" onclick=\"sendTo('/rewards.html')\"><a href=\"/rewards.html\">Rewards</a></td>" );

  document.writeln( "<td id=\"menuBarPunch\" onclick=\"sendTo('/punchcard.html')\"><a href=\"/punchcard.html\">Punch Card</a></td>" );

  document.writeln( "<td id=\"menuBarBenefits\" onclick=\"sendTo('/benefits.html')\"><a href=\"/benefits.html\">Benefits Card</a></td>" );

  document.writeln( "<td id=\"menuBarFAQ\" onclick=\"sendTo('/faqs.html')\"><a href=\"/faqs.html\">FAQ</a></td>" );

  document.writeln( "<td id=\"menuBarPricing\" onclick=\"sendTo('/signup.html')\"><a href=\"/signup.html\">Pricing</a></td>" );

  document.writeln( "<td id=\"menuBarLogin\" onclick=\"sendTo('/login.html')\"><a href=\"/login.html\">Login</a></td>" );

  document.writeln( "</tr>" );
  document.writeln( "</table>" );
  document.writeln( "</div>" );
 }

 function _drawFooter()
 {
  document.writeln( "<!-- footer -->" );
  document.writeln( "<div id=\"footer\">" );
  document.writeln( "<div id=\"footerinner\" class=\"footerlink\">Copyright &copy; 2012 Course Rewards LLC&nbsp;|&nbsp;<a href=\"/contact.html\" class=\"footerlink\">Contact Us</a>&#32;|&#32;<a href=\"/demo_request.html\" class=\"footerlink\">Request Demo</a>&#32;|&#32;<a href=\"/register.html\" class=\"footerlink\">Register Golfer Rewards Card</a></div>" );
  document.writeln( "</div>" );
  document.writeln( "<!-- end footer -->" );
 }

 //------------------------------------------------------
 // form submission - turn off highlighted inputs before
 // running through form validation
 //------------------------------------------------------
 function hideHighlights(formObj)
 {
  for( var i = 0; i < formObj.elements.length; i++ )
   {
    if( formObj.elements[i].className == "highlightInput" )
      formObj.elements[i].className = "";
   }
 }

 function highlightError(inputObj)
 {
  inputObj.className = "highlightInput";
  inputObj.focus();
 }

//-->

