<!--
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=yes,resizable=no,copyhistor=no,width=" + w + ",height=" + h;
        var imgWin = window.open(nam,"imgWindow",specs)
}

function sm_rollover(idName) {
	document.getElementById(idName).style.backgroundImage = "url(images/sm_bg_over.gif)";
}

function sm_rollout(idName) {
	document.getElementById(idName).style.backgroundImage = "url(images/sm_bg.gif)";
}


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;

}

// -->
