// JavaScript Document
/*
// loads links in new windows when designated by the rel="ext" attribute //
*/
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") == "ext")
     anchor.target = "_blank";
 }
}

window.onload = externalLinks;

<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->


function openPictureWindow_Fever(imageType,imageName,imageWidth,imageHeight,alt) {  // v4.01
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",scrollbars=no");
	newWindow.document.open();
	newWindow.document.write('<html><title>Enlarged View</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onblur="self.close()">'); 
	if (imageType == "jpg"){
	newWindow.document.write('<a href="javascript:;" onclick="self.close()"><img src=\"'+imageName+'\" width='+imageWidth+' height='+imageHeight+' alt="Click to Close" border="0"></a>');
	 	}else{}
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}