var last_item;
function item_red(item) {
  last_item.style.color='black';
  item.style.color='red';
  last_item = item;
}

function startup() {
  last_item=document.getElementById('dummy');
}

function refreshad() {
    parent.ad.location.reload();
}
