// js file for Rate this Page Survey

//begin script to auto submit the survey if the visitor bails w/o hitting submit

var visitorPressedSubmit = false;

function pressedSubmit(){
   visitorPressedSubmit = true;
   return true;
}

// Submit Survey
//"NEW_WINDOW",'screenX=0,screenY=0,resizable=yes,alwaysRaised=yes,scrollbars=yes,width=450,height=400');

function onSubmitSurvey(f){
	w = window.open(f.action, "NEW_WINDOW",'screenX=0,screenY=0,resizable=no,alwaysRaised=yes,scrollbars=yes,width=350,height=200');
	w.focus();
	f.submit();
	return true;
}

function getRadioValue(fld) {
   for(i = 0; i < fld.length; i++) {
	if(fld[i].checked == true) {
		return fld[i].value;
	}
   }
}

