<!--
/*Function to workaround w3c strict target attribute ban*/
function externalLinks() { 
 if (!document.getElementsByTagName) return; 
 var anchors = document.getElementsByTagName("a"); 
 for (var i=0; i<anchors.length; i++) { 
   var anchor = anchors[i]; 
   if (anchor.getAttribute("href") && 
       anchor.getAttribute("rel") == "external") 
     anchor.target = "_blank"; 
 } 
}

function enlargeImage(url, width, height) {
	popup = window.open(url,'large','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=' + width + ',height=' + height);
	var x = (screen.width-width)/2;
	var y = (screen.height-height)/2;
	popup.moveTo(x,y);
	popup.focus();
}
//-->