
<!-- 
//reloads the window if Nav4 resized
function MM_reloadPage(init) {
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->

<!--
//Code to open new windows
var newWin = null;
function popUp(strURL, strType, strHeight, strWidth) {  
	if (newWin != null && !newWin.closed) newWin.close();  
	var strOptions="";
	if (strType=="console")strOptions="scrollbars,height="+strHeight+",width="+strWidth;
	if (strType=="fixed")strOptions="height="+strHeight+",width="+strWidth;
	if (strType=="elastic")strOptions="status,toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
	if (strType=="stretch")strOptions="scrollbars,resizable,height="+strHeight+",width="+strWidth;
	window.name = "WindowOpener";
	newWin = window.open(strURL, 'newWin', strOptions);
	newWin.focus();}
//-->