/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
function secondWindow(aTarget){
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
SYNOPSIS:	Opens a secondary window in NS or IE. 
ARGUMENTS:	(void)
RETURNS:	(void)
AUTHOR(S):	Richard W. Watson                               	 10.23.00 Mon
NOTES:			- Originally for SMART 7, unknown date by RWW
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/

	if(top.windowHelp == null){
		if(B.NS){
			top.windowHelp = window.open(aTarget, 'Compare', 'scrollbars=yes,resizable=yes,width=560,height=450,dependent=yes');
		} else {
			top.windowHelp = window.open(aTarget, 'Compare', 'scrollbars=yes,resizable=yes,width=560,height=450');
		}
	} else {
		if(top.windowHelp.closed){
			if(B.NS){
				top.windowHelp = window.open(aTarget, 'Compare', 'scrollbars=yes,resizable=yes,width=560,height=450,dependent=yes');
			} else {
				top.windowHelp = window.open(aTarget, 'Compare', 'scrollbars=yes,resizable=yes,width=560,height=450');
			}			
		} else {
			top.windowHelp.location = aTarget;
		}
	}
	top.windowHelp.focus();
}
