function surveyOptionClick(pstrPrefix,plngIdSurvey,plngIdOption) {
	var strSuffix=pstrPrefix+plngIdSurvey;
	var objSurveyView=document.getElementById('objSurveyView'+plngIdSurvey);
	var objCmdSubmit=document.getElementById('objCmdSurvey'+strSuffix);
	objCmdSubmit.disabled=false;
	objSurveyView.idOption=plngIdOption;
}
function hndSurveySubmit(pstrAction, plngIdSurvey) {
	var objSurveyView=document.getElementById('objSurveyView'+plngIdSurvey);
	setObjectHeight(objSurveyView,objectHeight(objSurveyView));
	objHTTP.addParameter("strAction",pstrAction);
	objHTTP.addParameter("idSurvey",plngIdSurvey);
	objHTTP.addParameter("idOption",objSurveyView.idOption);
	objHTTP.get('Modules/modSurvey/services.php',false,false);
	objSurveyView.innerHTML=objHTTP.strText;
	return false;
}
