<!--
function openHelp(strPageName) { 
   var NewWindow 

   //open a new window, then set bring that window to the front (by setting the focus)  
   NewWindow = window.open (strPageName, 'newwindow', config='height=500, width=600, toolbar=no, menubar=no, scrollbars=no, resizable=yes, location=no, directories=no, status=no');
   NewWindow.focus()
}
// -->

