function open_help(link, screenX, screenY) {
   var attrib = "screenX=" + screenX 
    + ",screenY=" + screenY
    + ","
    + "width=650,height=450,scrollbars=1,resizable=1";
   var newWindow = window.open(link, "ssahelp", attrib);
   newWindow.focus();
}
