function returnScreening(){
	var theFormA;
	var theFormB;
	var returnValue;
	theFormA=document.moduloScreening;
	theFormB=document.memScreening;
	returnValue="";
	for(i=0;i<5;i++){
		if(theFormA.screening[i].checked==true){
			returnValue=theFormA.screening[i].value;
		}
	}
	if (returnValue!=""){
		theFormB.screening.value=returnValue;
	}
	theFormB.submit();
}
