// JavaScript Document
function pageToGo(i){
	location.href = i + ".cfm";
	}

var popUpWin=0;
function popUpWindow(URLStr, mywidth, myheight)
{
ww=screen.availWidth;
hh=screen.availHeight;
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  myleft=(ww-mywidth)/2;
  mytop=(hh-myheight)/2-50;
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+mywidth+',height='+myheight+',left='+myleft+', top='+mytop+',screenX='+myleft+',screenY='+mytop+'');
}