<!--
/*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 openWindow(winURL,winName,w,h,winSpecs) {
	popup = window.open(winURL, winName, "Width=" + w + ",Height=" + h + "," + winSpecs);
	var x = (screen.width-w)/2;
	var y = (screen.height-h)/2;
	popup.moveTo(x,y);
	popup.focus();
}
//-->