function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  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);

document.write('<style><!--body{');
document.write('scrollbar-face-color:#C7CAED;');
document.write('scrollbar-arrow-color:#383B5A;');
document.write('scrollbar-track-color:#DDDDFF;');
document.write('scrollbar-shadow-color:#C7CAED;');
document.write('scrollbar-highlight-color:#FFFFFF;');
document.write('scrollbar-3dlight-color:#C7CAED;');
document.write('scrollbar-darkshadow-Color:#9FA3D0;}');
document.write('--></style>');

function tgl (elementId) {
   var element;
   if (document.all)
     element = document.all[elementId];
   else if (document.getElementById)
     element = document.getElementById(elementId);
   if (element) {
     if (element.style.display == 'none')
       element.style.display = '';
     else
       element.style.display = 'none';
   }
}

function gotoSite(obj)
	{
	var s;
	s=obj.options[obj.selectedIndex].value
		location.href=s;
	}

function openpage(page) {
OpenWin = this.open(page, "primary", "scrollbars=yes, top=16, left=16, width=400, height=500");
}

function makevisible(cur,which){
if (which==0)
cur.filters.alpha.opacity=100
else
cur.filters.alpha.opacity=50
}