// production.js

<!--

// website chat functions...

function _drawChatCode()
{
 document.write( "<span id=\"chatmsg\" style=\"float: right; padding: 50px 20px 0px 0px; display: none\"><a href=\"/register\" style=\"text-decoration:none; font-size: 14px; font-weight: bold; color: #016600\">Golfers - Click Here To Register Your Card!</a></span><span id=\"gochat\" style=\"float: right; padding: 50px 20px 0px 0px; display: none\"><a href=\"javascript:void(0)\" onclick=\"_livechat();\"><img src=\"http://24im.com/images/guest/chat-live-now.png\" border=\"0\" /></a></span>" );
}

function _check4chat()
{
 if( _check4prod && _check4prod() == true )
   httpRequest('/cgi-bin/website/check4chat.cgi',null,handleChatResponse,"SESSION_ID=0&SESSION_KEY=''");
 else
   _showChat(0);
}

function handleChatResponse(request)
{
 if( request.status == 200 )
  {
   var resp = request.responseText;
   var func = new Function("return " + resp);
   var obj = func();

   if( obj.result <= -1 ) return;

   // show or hide the chat login based on ready flag...
   _showChat(obj.result);

   //if( obj.result == 1 ) setTimeout( "_chatPopUp()", 6000 );
  }
}

function _showChat(chatReady)
{
 if( chatReady == 1 )
  {
   document.getElementById("chatmsg").style.display = "none";
   document.getElementById("gochat").style.display = "block";
  }
 else
  {
   document.getElementById("gochat").style.display = "none";
   document.getElementById("chatmsg").style.display = "block";
  }
}

var liveChatOpened = false;

function _chatPopUp()
{
 if( liveChatOpened == false ) _livechat();
}

function _livechat()
{
 liveChatOpened = true;

 var url = "http://courserewards.24im.com/live/d1";
 var width = "550";
 var height = "350";

 var im = window.open(url, '', 'width='+width+',height='+height+',resizable=yes,scrollbars=no,toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no');
}

//-->
