
function getTop60Item(e) {
  // Update user interface the $('xxxx') is the name of the id
  $('top60listitem').innerHTML = '<span style="font-size:13px;font-weight:bold"></style>';
  // Prepare query string and send AJAX request
  var pars = 'list_pos=' + escape(e)+'&list_id='+list_id;
  var myAjax = new Ajax.Updater('top60listitem', 'ajaxServerTop60Item.php', {method: 'get', parameters: pars});
  // Stop form from submitting when JavaScript is enabled
  Event.stop(e);
}

function getIsrael360Item(e) {
  // Update user interface the $('xxxx') is the name of the id
  $('israel360text').innerHTML = '<span style="font-size:13px;font-weight:bold">loading...</style>';
  // Prepare query string and send AJAX request
  var pars = 'slide=' + escape(e);
  var myAjax = new Ajax.Updater('israel360text', 'ajaxServerIsrael360Item.php', {method: 'get', parameters: pars});
  // Stop form from submitting when JavaScript is enabled
  Event.stop(e);
}