<!--
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")) {
     var the_link = anchor.getAttribute("href");
     if (the_link.indexOf('http://')!=-1) {
			 if (the_link.indexOf('http://www.jeweettoch.org')==-1 && the_link.indexOf('http://jeweettoch.org')==-1) {
	  		anchor.target = "_blank";
			 } else {
				 anchor.target = "";
			 }
     } else {
   	  anchor.target = "";
     }
   }
 }
}
//-->
