function attention_submit() {
	this.document.forms[0].action="../action/updateAttention";
	this.document.forms[0].submit();       
}

function EnableField(srcValue,expValue,targetComp){
	if(srcValue==expValue){
		targetComp.disabled=false;
	}else{
	    targetComp.value='';
	    targetComp.disabled=true;
	}
}

function attention_init(){
	var frm=document.forms[0];
	if(!frm.profession[8].checked) frm.otherdescript.disabled=true;	
	//if(!frm.satisfation_name[3].checked) frm.satisfation_name_complaint.disabled=true;	
	//if(!frm.satisfation_feature[3].checked) frm.satisfation_feature_complaint.disabled=true;	
	if(!frm.prefer_feature[8].checked) frm.prefer_feature_txt.disabled=true;		
	if(!frm.worst_feature[8].checked) frm.worst_feature_txt.disabled=true;	
}