// JavaScript Document
function openLinkWindow(theURL,winName,specs) {
  window.open(theURL,winName,specs).focus();
}