<!--
function openWindow(name,href,w,h)
{
	w+=40;
	h+=80;
	if(w<200) w=200;
	if(h<200) h=200;
	newWindow=window.open(href,name,("height="+h+", width="+w+", resizable, scrollbars"));
	newWindow.focus();
}

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);


function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}
// -->