function OpenEvalDlg(strHREF)
{
	MM_openBrWindow(strHREF, 'popupwindow', 'scrollbars,resizable', true, 650, 590);
}

function MM_openBrWindow(theURL,winName,strFeatures, blnCentered, intWinWidth, intWinHeight) { //v2.0
	if (blnCentered){
		if (!strFeatures){
			strFeatures="";
		}
		strFeatures+=GetWinFeaturesToCenter(intWinWidth, intWinHeight);
	}
	window.open(theURL,winName,strFeatures);
}

function GetWinFeaturesToCenter(intWinWidth, intWinHeight){
  var h,w;
  var l,t;
  var strFeatures="";
  if (intWinWidth && intWinHeight){
    h = screen.height;
    w = screen.width;
    l = parseInt((w-intWinWidth)/2);
    t = parseInt((h-intWinHeight)/2);
    strFeatures=",width=" + intWinWidth + ",height=" + intWinHeight + ",left=" + l + ",top=" + t;
  }
  return strFeatures;
}

function OpenCensusDemoWindow(strHREF)
{
	MM_openBrWindow(strHREF,'CensusDemo','', true, 300, 200)
}