// JavaScript Document
// Function to open a new window unobtrusively 

// Lower Stock Farm		
	
// By Simon M White
// White Webs - http://www.whitewebs.co.uk
	
// October 2006


function doPopupsLinks() {
  if (!document.getElementsByTagName) return false;
  var links = document.getElementsByTagName("a");
  for (var i=0; i < links.length; i++) {
    if (links[i].className.match("popuplinks")) {
      links[i].onclick = function() {
        window.open(this.href);
        return false;
      }
    }
  }
}
window.onload = doPopupsLinks;
