// <!-- //hide from older browsers... 
/* many thanks to the folks at http://www.codingforums.com/
   for fixing this script so that it works properly */
function openLink(objLink) { //to do with onclick=
var w=window.open(objLink, 'newwindow');
w.focus(); // makes new window open on top of other windows
return false;
}
// cause each link to open in the same window
function opensetAttribute(objLink){ //to do with mouseover=
var addStr = " (opens in main window)"; // make sure there is a leading space
if (objLink.title.indexOf(addStr)==-1) { 
objLink.title = objLink.title + addStr; //adds extra phrase to title in mouseover message
('target','_blank');
 }
}
// -->
