// JavaScript Document

document.onclick = function(e)
{
  var target = e ? e.target : window.event.srcElement;

  while (target && !/^(a|body)$/i.test(target.nodeName))
  {
    target = target.parentNode;
  }

  if (target && target.getAttribute('rel')
      && target.rel == 'external')
  {
    var external = window.open(target.href);

    return external.closed;
  }
}

function BannerDisplay()
{
	newwindow=window.open('/banners/','bannerDisplay','status=yes,scrollbars=no,resizable=yes,width=500,height=300,top=20,left=10');
	if (window.focus) {newwindow.focus()}
	return false;
}

