function performAction(action){
	document.forms[0].accion.value=action;
	//document.forms[0].boton.disabled=true;
	document.forms[0].submit();
}

function montos(cod_infrac, fecha) {
    window.open('montos.do?accion=ir&cod_infrac='+cod_infrac+'&fecha='+fecha,'newWindow','alwaysRaised=yes,scrollbars=no,dependent=yes,status=no,width=800,height=230,menu=no,top=50,left=1');    
}

function setAction(url) {
	document.multas.action = url;
	return true;
}

function disableButton() {
	document.multas.elements['Button'].disabled = true;		
	document.multas.submit();
}	

function habilitar(id){
document.getElementById(id).style.display = 'block';
}

function desHabilitar(id){
document.getElementById(id).style.display = 'none';
}

