<!--
function rollOver(imageName,newImageName){
	document[imageName].src = "images/"+newImageName;
}

function oWin(w,h,nam) {
	    specs="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistor=no,width=" + w + ",height=" + h;
        var imgWin = window.open(nam,"imgWindow",specs)
}
//this function jumps to another page
function jumpPage(newPageName){
	location.href=newPageName;
}


function FreezeScreen(msg) {

  scroll(0,0);

  var outerPane = document.getElementById('FreezePane');

  var innerPane = document.getElementById('InnerFreezePane');

  if (outerPane) outerPane.className = 'FreezePaneOn';

  if (innerPane) innerPane.innerHTML = msg;

}
// -->

