// JavaScript Document

function openURL() {
if (!document.getElementsByTagName) return false;
var links = document.getElementsByTagName("a");
for (var i=0; i < links.length; i++) {
if (links[i].className.match("openURL")) {
links[i].onclick = function() {
window.open(this.href,"", "width=490,height=600,scrollbars=1,resizable=1");
return false;
}}}}

window.onload = openURL;