function NewWindow(mypage, myname, w, h, scroll) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function divPop(id) {
	if (id.style.display =='') {
		id.style.display = 'none';
	}
	else {
 		id.style.display='';
	}
}
function showNote(e) {
		var y = (e.screenY - 150) + document.body.scrollTop;
		NOTE.style.top = y;
 		NOTE.style.display='';
		return false;
}

<!--
function deleteLayer(id) {
 if (document.layers && document.layers[id]) {
  document.layers[id].visibility='hide'
  delete document.layers[id]
 }
 if (document.all && document.all[id]) {
  document.all[id].innerHTML=''
  document.all[id].outerHTML=''
 }
}

function makeLayer(e,id) {
	var T = (e.screenY - 150) + document.body.scrollTop;
	var L = (e.screenX + 75) + document.body.scrollLeft - (screen.width - document.body.clientWidth);
	var W = 225 ;
	var bgColor = '#FFFFCC' ;
	var visible = 1;
	var zIndex=1;

 if (document.layers) {
  if (document.layers[id]) {
   alert ('Layer with this ID already exists!')
   return
  }
  var LR=document.layers[id]=new Layer(W)
  LR.name= id
  LR.left= L
  LR.top = T
  LR.visibility=(null==visible || 1==visible ? 'show' : 'hide')
  if(null!=zIndex)  LR.zIndex=zIndex
  if(null!=bgColor) LR.bgColor=bgColor
 }
 else if (document.all) {
  if (document.all[id]) {
   alert ('Layer with this ID already exists!')
   return
  }
  var LR= '\n<DIV id='+id+' style="position:absolute'
  +'; left:'+L+'; top:'+T+'; width:'+W+';'
  +'; visibility:'+(null==visible || 1==visible ? 'visible':'hidden')
  +(null==zIndex  ? '' : '; z-index:'+zIndex)
  +(null==bgColor ? '' : '; background-color:'+bgColor)+'">'
	+'<TABLE WIDTH=100% HEIGHT=100" BORDER=1 CELLPADDING=5 BORDERCOLOR=#000000>'
	+'<TR><TD><FONT SIZE=1><SPAN CLASS=rednote>Note: </SPAN><STRONG>Perform a right-click </STRONG>'
	+'and select the <STRONG>&quot;Save Target As...&quot;</STRONG> (Save Link As... '
	+'for Netscape Users) option to save the file to your computer.</FONT></TD>'
	+'</TR></TABLE>'
  +'</DIV>'
  document.body.insertAdjacentHTML("BeforeEnd",LR)
 }
}   

function makeLayer2(e,id) {
	var T = (e.screenY - 175) + document.body.scrollTop;
	var L = (e.screenX + 250) + document.body.scrollLeft - (screen.width - document.body.clientWidth);
	var W = 225 ;
	var bgColor = '#FFFFCC' ;
	var visible = 1;
	var zIndex=1;

 if (document.layers) {
  if (document.layers[id]) {
   alert ('Layer with this ID already exists!')
   return
  }
  var LR=document.layers[id]=new Layer(W)
  LR.name= id
  LR.left= L
  LR.top = T
  LR.visibility=(null==visible || 1==visible ? 'show' : 'hide')
  if(null!=zIndex)  LR.zIndex=zIndex
  if(null!=bgColor) LR.bgColor=bgColor
 }
 else if (document.all) {
  if (document.all[id]) {
   alert ('Layer with this ID already exists!')
   return
  }
  var LR= '\n<DIV id='+id+' style="position:absolute'
  +'; left:'+L+'; top:'+T+'; width:'+W+';'
  +'; visibility:'+(null==visible || 1==visible ? 'visible':'hidden')
  +(null==zIndex  ? '' : '; z-index:'+zIndex)
  +(null==bgColor ? '' : '; background-color:'+bgColor)+'">'
	+'<TABLE WIDTH=100% HEIGHT=25" BORDER=1 CELLPADDING=5 BORDERCOLOR=#000000>'
	+'<TR><TD><FONT SIZE=1><SPAN CLASS=rednote>Note: </SPAN><STRONG>You will download a Compiled HTML help file</STRONG>'
	+'</FONT></TD>'
	+'</TR></TABLE>'
  +'</DIV>'
  document.body.insertAdjacentHTML("BeforeEnd",LR)
 }
}   


function fullScreen(theURL) {
	window.open(theURL, '', 'fullscreen=yes, scrollbars=auto');
}
//-->
