<!--
function popUP(file,width,height,scrolling,name)
{
	var    xPos = (screen.availWidth / 2) - (width / 2);
	var    yPos = (screen.availHeight / 2) - (height / 2) - 20;
	window.open(file,name,'top='+yPos+',left='+xPos+',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='+scrolling+',resizable=0,width='+width+',height='+height);
}

function changeLocation(url)
{
	window.location.replace(url);
}

function jumpURL(targ,url)
{
  eval(targ+".location='"+url+"'");
}

function emptyThis(formelement)
{
  formelement.value="";
}
//-->
