function showHideSubItem( itemNumber, imgObj )
{
  var dItem = document.getElementById( "item_" + itemNumber );
  if ( dItem.style.display == 'none' )
  {
    dItem.style.display = 'block';
    imgObj.src          = '/i/openItem.gif';
  }
  else
  {
    dItem.style.display = 'none';
    imgObj.src          = '/i/closeItem.gif';
  }
}

function hoverUnhoverSubItem( subsectionNumber, what )
{
  if ( !what )
    what = 'hover';

  var sImg = document.images[ "subSection_" + subsectionNumber ];
  if ( what == 'hover' )
    sImg.setAttribute( "src", "/i/hoverSubSection.gif" );
  else
    sImg.setAttribute( "src", "/i/1.gif" );
}

function formSubmit( formName )
{
  document.forms[ formName ].submit();
}

function Go(dest)
{
  if (document.location.hostname!="localhost") window.open(dest,"_self");
  else window.open(dest+"&local=1","_self");
}

function GoBlank(dest)
{
  if (document.location.hostname!="localhost") window.open(dest,"_blank");
}

function XGo(dest)
{ 
  if (document.location.hostname!="localhost") window.open("http://www."+dest,"_self");
  else window.open(dest+"&local=1","_self");
}

function XGoBlank(dest)
{
  if (document.location.hostname!="localhost") window.open("http://www."+dest,"_blank");
}

function Download()
{
  if (document.location.hostname!="localhost") window.open("http://www.888Casino.com/download.cgi?refererID=505474","_self");
}

function Hand(obj)
{
  obj.style.cursor='hand';
}

