function initLinks() {
  for (i in document.links) {
    link = document.links[i];
    if (link.rel && link.rel.indexOf('external')!=-1) {
      link.onclick = onExternalLinkActivate;
      link.onkeypress = onExternalLinkActivate;
    }
  }
 
}

function onExternalLinkActivate() {
  window.open(this.href);
  return false;
}

window.onload = initLinks;

function popitup(url, title, width, height) {
	var link = '/image.php?title='+title+'&url='+url+'&width='+width+'&height='+height;
	newwindow=window.open(link,title,'height='+height+',width='+width+',top=-200, left=400, statusbar=0');
	if (window.focus) {newwindow.focus()}
	return false;
}
function p_popitup() {
	
	newwindow=window.open('/admin/performance.php','Performance','height=850,width=250top=-200, left=400, scrollbars=true');
	if (window.focus) {newwindow.focus()}
	return false;
}