/* many thanks to the folks at www.codingforums.com/
for fixing this script so that it works properly */
function openLink(link) { 
window.name='main'; 
var w=window.open(link, 'popup', 'scrollbars=1,resizable=1,width=695,height=695,left=20,top=20');
w.focus();// make popped window open on top of other windows
return false;
}
function opensetAttribute(link){ 
var addStr = ' (opens in popup)'; 
if (link.title.indexOf(addStr)==-1) { 
link.title = link.title + addStr; //add extra phrase to title spec
('target','_blank');
}
}

function onmice() {
document.write('" onmouseover="return opensetAttribute(this)" onmouseout="');
}

/*
use the following in the anchor tag for a popup link:
onclick="return openLink(this.href);onmice();
*/
