/* 	JS Header for _web_JsPopupWindows subform*/    var aWin ;    var theBrowser=navigator.appName + " v" + navigator.appVersion;    var isIE = theBrowser.indexOf ("IE") >= 0 ;    var isNav = theBrowser.indexOf ("Netscape") >= 0 ;    var winLeft = ''    var winTop = ''    if (isIE ) { winLeft = ', left='+window.left + 40 ; winTop = ', top=' + window.Top + 40 }    if (isNav ) { winLeft = ', screenX='+window.screenX + 40 ; winTop = ', screenY='+window.screenY + 40 }    function openNote(titl,topic,content,width,height) {	    	window.status='Opening....' ;          if (!height) { height=250 } ;          if (!width) { width=300 } ;          aPopUp= window.open('','Note','toolbar=no,menubar=no,location=no,directories=no,modal=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+width+',height='+height ); //+ winLeft + winTop          ndoc= aPopUp.document;          ndoc.close();          ndoc.open();          astr ='<HTML><HEAD>';          astr +='<BASE HREF="'+ location.href + '">';          astr +='<TITLE>' + titl + '</TITLE>';          astr+='<STYLE TYPE="text/css">' + popupStyle + '</STYLE>' ;          astr +='<SCRIPT>';          astr +='function closeNote(aName)';          astr +=' { window.close(); }\n ;';          astr +='function closeThis()';          astr +=' { window.opener.closePopup(window) }\n ;';          astr +='</SCRIPT></HEAD>';          astr +='<body LANGUAGE="JavaScript" onBlur="window.close()">';          if ( topic != '' ) {	          astr +='<H1>'+topic+'</H1>';	     }          astr +=content;          astr +='<DIV ALIGN="CENTER"><A HREF="javaScript:void(null);return false" onClick="closeThis()">close</A></DIV>';          astr +='</body></HTML>' ;          ndoc.write(astr) ;          ndoc.close() ;          aPopUp.status = "Status when focused" ;          self.aNoteWin = aPopUp ;          aPopUp.focus() ;     }     function closeKey ( hWnd ) {     	keyWndOpen=false     	hWnd.close();	     	window.focus();     	window.resizeBy ( 0, 122 )     }          function closePopup ( hWnd ) {     	hWnd.close();  	     	window.focus();     }     function openUrl( url ) {	var theBrowser=navigator.appName + " v" + navigator.appVersion;	var isIE = theBrowser.indexOf ("IE") >= 0 ;	var isNav = theBrowser.indexOf ("Netscape") >= 0 ;	height='480' ;	width='640' ;		scrWidth=window.screen.availWidth ;	scrHeight=window.screen.availHeight ;		if (isIE ) { winLeft = ', left='+window.left + 40 ; winTop = ', top=' + window.Top + 40 }	if (isNav ) { winLeft = ', screenX='+window.screenX + 40 ; winTop = ', screenY='+window.screenY + 40 }	var jobWin=window.open( '','','dependent=no,toolbar=no,menubar=no,location=no,directories=no,modal=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+width+',height='+height+','+winLeft+','+winTop );	var astr='';	astr='<HTML><HEAD>' ;	astr+='<BASE HREF="'+ location.href + '">' ;	astr+='<TITLE>Loading....</TITLE>' ;	astr+='<STYLE TYPE="text/css">' + popupStyle + '</STYLE>' ;	astr+='</HEAD>' ;	astr+='<BODY>' ;	astr+='Loading, please wait....' ;	astr+='</BODY></HTML>' ;	jobWin.document.write(astr);	jobWin.location.href=url;	jobWin.focus()}function openDocument( documentName ) {	openUrl ( HTML_URLRoot + documentName )}function showDiv ( divId ) {	var divDisplay=''	divStyle=eval ( 'document.all.'+divId+'-less.style' )	with ( divStyle ) {		if ( display=='none' ) {			display='inline'		} else {			display='none'		}	}}/* 	End of JS Header for _web_JsPopupWindows subform*/