<!--
function openCandidateSurvey(){
	var width = 550
	var height = 550
	var winleft = (screen.width / 2) - (width / 2);
	var wintop = (screen.height / 2) - (height / 2);
	surveyWin = window.open("./candidate-form.asp","surveyWin","top="+wintop+",left="+winleft+",width="+width+",height="+height+",buttons=no,scrollbars=yes,location=no,menubar=no,resizable=no,status=no,directories=no,toolbar=no");
	surveyWin.focus();
}
//-->
