function open_help_window(s_helpfilename,s_sectiontag)
{
	var s_url = '';
	s_url = s_helpfilename + '#' + s_sectiontag	

//	DEBUG CODE

/*	var s_temp = ''
	
	
	s_temp = s_temp + 'BROWSER_AGENT:\n'
	s_temp = s_temp + '--------------\n'	
	s_temp = s_temp + navigator.userAgent.toUpperCase() + '\n\n';
	s_temp = s_temp + 'HELP_FILE_URL_TEST:\n'
	s_temp = s_temp + '-------------------\n'
	s_temp = s_temp + s_url
	alert(s_temp);
*/




/*	//RESIZING and STUFF
	currwindowWidth = ((screen.availWidth) * 0.75)-5;
	helpwindowWidth =  (screen.availWidth) * 0.25;
	windowHeight = screen.availHeight;
	currwindowLeft = 0
	helpwindowLeft = (screen.availWidth) * 0.75
	
	window.resizeTo(currwindowWidth,windowHeight);
	popup_properties = 'width=' + helpwindowWidth + ',height=' + windowHeight + ',status=0,location=0,scrollbars=1,menubar=0'
	//END RESIZING
  	help_popup = window.open(s_url,'helpwindow',popup_properties);
	help_popup.moveTo(helpwindowLeft,0);	
*/


 	help_popup = window.open(s_url,'helpwindow','width=450,height=450,status=0,location=0,scrollbars=1,menubar=0');	
 	if(!help_popup.opener)
	   help_popup.opener=self;
   	help_popup.focus();  


}



/*

<script language="JavaScript" src="../htm/help_script.js"></script>  
<script language="JavaScript" src="help_script.js"></script>

javascript:open_help_window('UserManualVolume1.htm','') 
<A HREF="javascript:open_help_window('../htm/UserManualVolume1.htm','find')" onMouseOver="(window.status='HELP'); return true" onMouseOut="(window.status=''); return true">
<A HREF="javascript:open_help_window('../htm/UserManualVolume1.htm','find')" onMouseOver="(window.status='HELP'); return true" onMouseOut="(window.status=''); return true"><IMG SRC="../dataentry/img/help_bl.jpg" height=20 width=43 BORDER=0 align="baseline"></A>
<A HREF="javascript:open_help_window('../htm/UserManualVolume1.htm','standard_query')" onMouseOver="(window.status='HELP'); return true" onMouseOut="(window.status=''); return true"><IMG SRC="../dataentry/img/help_bl.jpg" HSPACE=20 BORDER=0 ALIGN=ABSCENTER></A>

UserManualVolume1.htm
../dataentry/img/help_bl.jpg

*/

  