//Customize this variable to your real domain name where this script will be installed
var domain="golfersdream.com";

function CheckLinks(){
//This function will make links that are outside your website to open in a new window
//Loop trought all the links in the current page
for(i=0;i<document.links.length;i++){
//Search the domain of your pages in the current URL of the link, if it is not found, then the link is outside of the domain
if(document.links[i].href.indexOf("http://")!=-1){
if(document.links[i].href.indexOf(domain)==-1){
//Change the target of the current link to a new window
document.links[i].target="_blank";
}
 }
  }
   }

window.onload=CheckLinks;