	var rtpWidth=550;
	var rtpHeight=300;
	var MSIEWidth=550;
	var MSIEHeight=300;
	var NSWidth=550;
	var NSHeight=300;
	var OperaWidth=550;
	var OperaHeight=300;
	var CloseText='[ Close window ]';
	var UnderlineLink='NO';
	var VerticalOffset=.1;
	var AddBlankLineBelowCloseLink='YES';
	var AddBlankLineBelowCloseLink = AddBlankLineBelowCloseLink;
	if (!AddBlankLineBelowCloseLink)
		AddBlankLineBelowCloseLink = 'YES';
	AddBlankLineBelowCloseLink = AddBlankLineBelowCloseLink.toUpperCase();
	LineBreak='';
	if (AddBlankLineBelowCloseLink == 'YES' || AddBlankLineBelowCloseLink == '')
		LineBreak='<br>&nbsp;';

	var UnderlineLink = UnderlineLink;
	UnderlineLink = UnderlineLink.toUpperCase();
	var LinkUnderlineOn='';
	var LinkUnderlineOff='';
	if (UnderlineLink == 'YES' || UnderlineLink == '')
	{
		LinkUnderlineOn='<u>';
		LinkUnderlineOff='<\/u>';
	}
	document.writeln('<div ID=demodiv class=demo style=width: 0; height: 0>');
	document.writeln('<table border=1 width=100% bgcolor=#F0F0F0 cellspacing=0 cellpadding=0>');
	document.writeln('<tr>');
	document.writeln('<td width=100%>');
	//Defaults are installed in the previous JS fragment.
	var DefaultW = MSIEWidth;
	var DefaultH = MSIEHeight;
	//Modify the following as necessary for best appearance with
	//other browsers.
	if(navigator.appName.indexOf("Netscape")>-1){
		//Set NS values below
		DefaultW = NSWidth;
		DefaultH = NSHeight;
	} else if(navigator.appName.indexOf("Opera")>-1) {
		//Set Opera values below
		DefaultW = OperaWidth;
		DefaultH = OperaHeight;
	}
	//Determine where our documents should be...
	var docloc_array=document.URL.split("/");
	var DocLoc='';
	for (var i =0; i<docloc_array.length - 1;i++){
		DocLoc= DocLoc + docloc_array[i] + '/';
	}
	//Write the DIV code we need (no adjustment necessary)	
	document.writeln('<style type="text/css">');
	document.writeln('.demo  {color:#000033; background-color:white; layer-background-color:white;');
	document.writeln('position:absolute; z-index:99;  visibility:hidden;');
	document.writeln('top:0px; left:0px; width:0px; height:0px;');
	document.writeln('</style>');
	
	document.write('<table border=0 width=100% cellspacing=0 cellpadding=0><tr><td width=100% valign=top align=left><IFRAME Name=helpFrame ID=helpFrame SRC="' + DocLoc + 'docs/null.htm" width=' + DefaultW + ' height= ' + DefaultH + ' SCROLLING=auto FRAMEBORDER=0 MARGINHEIGHT=0 MARGINWIDTH=0>We\'re sorry, but your browser does not support Inline Frames presentations.</IFRAME></td></tr><tr><td width=100% valign=top align=left><p align=center><A class=demolnk href=javascript:void(0); onclick=parent.main.showHelp(\'demodiv\',0); return false;><B><font face=Arial size=2 color=blue>' + LinkUnderlineOn + CloseText + LinkUnderlineOff + '</font></b></A>' + LineBreak + '</td></tr></table>');
	document.writeln('</td>');
	document.writeln('</tr>');
	document.writeln('</table>');
	document.writeln('</td>');
	document.writeln('</tr>');
	document.writeln('</table>');
	document.writeln('</div>');

function showHelp(szDivID, iState, file) // 1 visible, 0 hidden
{
	var winW = (window.innerWidth) ? window.innerWidth : document.body.offsetWidth;
	var rLeft = ((winW - rtpWidth - rtpWidth) / 2) + 220;
	rTop = document.body.scrollTop + (rtpHeight * VerticalOffset);
    if(document.layers) {	   					//NN4+
		var layer = document.layers[szDivID];
    	layer.top = rTop;
		layer.left = rLeft;
		document.layers[szDivID].visibility = iState ? "show" : "hide";
    } else if(document.getElementById)	{  		//gecko(NN6) + IE 5+ 
        var layer = document.getElementById(szDivID);
		layer.style.top = rTop;
		layer.style.left = rLeft;
        var obj = document.getElementById(szDivID);
        obj.style.visibility = iState ? "visible" : "hidden";
    } else if(document.all)	{ 					// IE 4
		document.all[szDivID].style.posLeft = rLeft;
		document.all[szDivID].style.posTop = rTop;
        document.all[szDivID].style.visibility = iState ? "visible" : "hidden";
    }
	var hFile= DocLoc + 'docs/' + file + ".htm";
	frames['helpFrame'].location.href=hFile; //load up the proper file and call it...
}
function SetDspFrameSize(id) {
    var DspFrame = document.getElementById(id);
    if (DspFrame) {
        if (DspFrame.contentDocument && DspFrame.contentDocument.body.offsetHeight) {
            // FireFox, Mozilla, et. al. (W3C) syntax
            DspFrame.height = DspFrame.contentDocument.body.offsetHeight;    
        } else if (DspFrame.Document && DspFrame.Document.body.scrollHeight) {
            // MSIE syntax
            DspFrame.height = DspFrame.Document.body.scrollHeight;
        }
		/* For FF/NS class browsers (and possibly others) add some additional height
		to kill off the vertical scroll bar (shows up even if SCROLLING="NO"; go figure...)
		The next line casts the string to an integer, which may or may not be adjusted. */		
		var adj=DspFrame.height / 1; 
		if (!document.all)     /* Returns TRUE unless MSIE (inverted logic)*/
			adj+=16; 	       /* For any browser other than MSIE add 16 pixels to the height. Even
							      if it turns out that we end up overadjusting for a few browsers,
							      the likelihood that 16 pixels of space will cause a problem is
							      pretty remote. */
		DspFrame.height = adj;
		if (DspFrame.addEventListener) {
            DspFrame.addEventListener("load", adjDspFrame, false);
        } else {
			DspFrame.detachEvent("onload", adjDspFrame); //MSIE needs hand-holding...
            DspFrame.attachEvent("onload", adjDspFrame);
        }
   }
}
function adjDspFrame(evt) { //retaining the event (evt) for possible future expansion; not used
	SetDspFrameSize('DisplayFrame');
}
/* On page load the following is fall-through code that will always be executed
   This code binds similar event handlers to this page. This eliminates one
   setup step. Specifically, there is no need for an installer to include a
   "onload=..." statement in the <body tag.
*/

if (window.addEventListener) {
	window.addEventListener("load",adjDspFrame,false);
} else {
    window.attachEvent("onload", adjDspFrame);
}
function ToggleBkg() {

}