
function load(linktopage)
{
  window.location.href=linktopage;
}

function loadext(linktopage)
{
//  window.new.href=linktopage;
}

function mouse_on_promochoice(targetId)
{
  var srcElement, targetElement;
  targetElement = document.all(targetId);
  targetElement.style.background = "f4f4f4";
}

function mouse_off_promochoice(targetId)
{
  var srcElement, targetElement;
  targetElement = document.all(targetId);
  targetElement.style.background = "ffffff";
}

