function Hand(obj)
{
  obj.style.cursor='hand';
}

function Download(category,tracker)
{
  if (document.location.hostname!="localhost") {
   if(category=='poker')
    window.open("http://www.empirepoker.com/Downloads/"+tracker+"/EmpirePokerSetup.exe","_self");
   if(category=='casino')
    window.open("http://www.888Casino.com/download.cgi?refererID="+tracker,"_self");
   if(category=='partypoker')
    window.open("http://www.partypoker.com/Downloads/"+tracker+"/PartyPokerSetup.exe","_self");
  }
}

function Open(category,tracker) {
 if (document.location.hostname!="localhost") {
  if(category=='poker')
   window.open("http://www.empirepoker.com/index.htm?wm="+tracker);
  if(category=='casino')
   window.open("http://www.888Casino.com/main.cgi?refererID="+tracker);
  if(category=='partypoker')
   window.open("http://www.partypoker.com/index.htm?wm="+tracker);
 }
}

function Go(category,tracker) {
 if (document.location.hostname!="localhost") {
  if(category=='poker')
   window.location.replace("http://www.empirepoker.com/index.htm?wm="+tracker);
  if(category=='casino')
   window.location.replace("http://www.888Casino.com/main.cgi?refererID="+tracker);
  if(category=='partypoker')
   window.location.replace("http://www.partypoker.com/index.htm?wm="+tracker);
 }
}

