var lastUpdated = "06/26/2009";

  
 function HelpUrlresize(url,h,w) {
    //var h = 300;
    //var w = 450;
    var title = "Help";
    var winname = "HelpWin";
    var color = "#ffffff";
  
    var f2h = 45;
    var f1h = h - f2h;
    var options = "toolbar,width="+w+",height="+h+",resizable=yes,scrollbars,location=yes";
    var win = window.open(url, winname, options);
    if (win == null) {
      alert("Unable to create new window!  Please restart your browser.");
      return false;
    }
    //win.document.writeln('<html><head><title>Help</title></head>');
    //win.document.writeln('<frameset rows="'+f1h+','+f2h+'" border=3>');
    //win.document.writeln('<frame name="PopUp1" src="../'+url+'">');
    //win.document.writeln('<frame name="PopUp2" src="about:blank" scrolling=no>');
    //win.document.writeln('</frameset><noframes></noframes>');
    //win.document.writeln('</html>');
    //win.document.close();
    //win.PopUp2.document.writeln('<html><body bgcolor="'+color+'"><form><center><small><input type="button" value="Close" onClick="top.close();"></small></center></form></body></html>');
    //win.PopUp2.document.close();
    //win.frames[0].focus();
    return false; // return false since we don't want to follow link!
  }  

function definitionWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}