
	<!--
	var validarFrmCont = function(){
		retval = true;
		
				try{
				retval = retval && document.getElementById('ctl1').value != '';
				}
				catch(e){alert('falla ctl1');return false;}
			
				try{
				retval = retval && document.getElementById('ctl2').value != '';
				}
				catch(e){alert('falla ctl2');return false;}
			
				try{
				retval = retval && document.getElementById('ctl3').value != '';
				}
				catch(e){alert('falla ctl3');return false;}
			
				try{
				retval = retval && document.getElementById('ctl4').value != '';
				}
				catch(e){alert('falla ctl4');return false;}
			
				try{
				retval = retval && document.getElementById('ctl5').value != '';
				}
				catch(e){alert('falla ctl5');return false;}
			
				try{
				retval = retval && document.getElementById('ctl6').value != '';
				}
				catch(e){alert('falla ctl6');return false;}
			
		if (!retval)
			alert("Por favor complete los campos obligatorios");
		return retval;
		}
	//-->