<!--
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;

}

function checkMail(obj)
{
	var x = obj.value;
	var filter  = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
	if (!filter.test(x)) {alert('Incorrect email address');return false;} else { return true;};
	obj.focus();
}

// -->

