if (document.images) {
  games_roll = new Image(53,19); games_roll.src="/itsmylife/images/games_tab_btn_roll.gif";
  juegos_roll = new Image(53,19); juegos_roll.src="/itsmylife/images/games_tab_btn_roll_sp.gif";
  video_roll = new Image(49,19); video_roll.src="/itsmylife/images/video_tab_btn_roll.gif";
  advice_roll = new Image(57,19); advice_roll.src="/itsmylife/images/advice_tab_btn_roll.gif";
  celebs_roll = new Image(59,19); celebs_roll.src="/itsmylife/images/celebs_tab_btn_roll.gif";
  blog_roll = new Image(49,19); blog_roll.src="/itsmylife/images/blog_tab_btn_roll.gif";

  home_roll = new Image(161,25); home_roll.src="/itsmylife/images/home_btn_games_roll.gif";
  family_roll = new Image(161,25); family_roll.src="/itsmylife/images/family_btn_games_roll.gif";
  friends_roll = new Image(161,25); friends_roll.src="/itsmylife/images/friends_btn_games_roll.gif";
  school_roll = new Image(161,25); school_roll.src="/itsmylife/images/school_btn_games_roll.gif";
  body1_roll = new Image(161,25); body1_roll.src="/itsmylife/images/body_btn_sub_roll.gif";
  emotions_roll = new Image(161,25); emotions_roll.src="/itsmylife/images/emotions_btn_sub_roll.gif";
  money_roll = new Image(161,25); money_roll.src="/itsmylife/images/money_btn_sub_roll.gif";

  games_off = new Image(53,19); games_off.src="/itsmylife/images/games_tab_btn.gif";
  juegos_off = new Image(53,19); juegos_off.src="/itsmylife/images/games_tab_btn_sp.gif";
  video_off = new Image(49,19); video_off.src="/itsmylife/images/video_tab_btn.gif";
  advice_off = new Image(57,19); advice_off.src="/itsmylife/images/advice_tab_btn.gif";
  celebs_off = new Image(59,19); celebs_off.src="/itsmylife/images/celebs_tab_btn.gif";
  blog_off = new Image(49,19); blog_off.src="/itsmylife/images/blog_tab_btn.gif";

  home_off = new Image(161,25); home_off.src="/itsmylife/images/home_btn_games.gif";
  family_off = new Image(161,25); family_off.src="/itsmylife/images/family_btn_games.gif";
  friends_off = new Image(161,25); friends_off.src="/itsmylife/images/friends_btn_games.gif";
  school_off = new Image(161,25); school_off.src="/itsmylife/images/school_btn_games.gif";
  body1_off = new Image(161,25); body1_off.src="/itsmylife/images/body_btn_sub.gif";
  emotions_off = new Image(161,25); emotions_off.src="/itsmylife/images/emotions_btn_sub.gif";
  money_off = new Image(161,25); money_off.src="/itsmylife/images/money_btn_sub.gif";

  function imgOver(imgTxt, state) {
    if (state == 'on') {
      document[imgTxt].src = eval(imgTxt + "_roll.src");
    }
    else {
      document[imgTxt].src = eval(imgTxt + "_off.src");
    }
  }
}

function goToTellIMLPoll() {
  var pollUrl = "/cgi-registry/poll/poll.pl?results=";
  var pollName = "popup_poll2";
  var theAnswer = null;
  var results = document.forms[pollName].results.value;
  var site_id = document.forms[pollName].site_id.value;
  var poll_id = document.forms[pollName].poll_id.value;
  pollUrl = pollUrl + results + '&site_id=' + site_id + '&poll_id=' + poll_id;
  for (counter=0; counter<document.forms[pollName].q1.length;counter++) {
    if (document.forms[pollName].q1[counter].checked) theAnswer = counter+1;
  }
  for (counter=0; counter<document.forms[pollName].age.length;counter++) {
    if (document.forms[pollName].age[counter].checked) theAnswer2 = counter+1;
  }
  for (counter=0; counter<document.forms[pollName].where_live.length;counter++) {
    if (document.forms[pollName].where_live[counter].checked) theAnswer3 = counter+1;
  }
  for (counter=0; counter<document.forms[pollName].how_often.length;counter++) {
    if (document.forms[pollName].how_often[counter].checked) theAnswer4 = counter+1;
  }
  for (counter=0; counter<document.forms[pollName].like_best.length;counter++) {
    if (document.forms[pollName].like_best[counter].checked) theAnswer5 = counter+1;
  }
  for (counter=0; counter<document.forms[pollName].num1_reason.length;counter++) {
    if (document.forms[pollName].num1_reason[counter].checked) theAnswer6 = counter+1;
  }
  for (counter=0; counter<document.forms[pollName].anonymity.length;counter++) {
    if (document.forms[pollName].anonymity[counter].checked) theAnswer7 = counter+1;
  }
  for (counter=0; counter<document.forms[pollName].bullied.length;counter++) {
    if (document.forms[pollName].bullied[counter].checked) theAnswer8 = counter+1;
  }
  for (counter=0; counter<document.forms[pollName].advertising.length;counter++) {
    if (document.forms[pollName].advertising[counter].checked) theAnswer9 = counter+1;
  }
  if (theAnswer) pollUrl = pollUrl + '&q1=' + theAnswer;
  if (theAnswer2) pollUrl = pollUrl + '&age=' + theAnswer2;
  if (theAnswer3) pollUrl = pollUrl + '&where_live=' + theAnswer3;
  if (theAnswer4) pollUrl = pollUrl + '&how_often=' + theAnswer4;
  if (theAnswer5) pollUrl = pollUrl + '&like_best=' + theAnswer5;
  if (theAnswer6) pollUrl = pollUrl + '&num1_reason=' + theAnswer6;
  if (theAnswer7) pollUrl = pollUrl + '&anonymity=' + theAnswer7;
  if (theAnswer8) pollUrl = pollUrl + '&bullied=' + theAnswer8;
  if (theAnswer9) pollUrl = pollUrl + '&advertising=' + theAnswer9;
  self.name = "itsmylife_parentwindow";
  window.open(pollUrl, "PollResults", "toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=1,width=450,height=300");

  return false;
}