function rateUp(idMensaje){new Ajax.Request("ajax/mensajes?idMensaje="+idMensaje+"&rate=rateUp",{onSuccess:function(transport){$("rate_count_"+idMensaje).innerHTML=transport.responseText}})}function rateDown(idMensaje){new Ajax.Request("ajax/mensajes?idMensaje="+idMensaje+"&rate=rateDown",{onSuccess:function(transport){$("rate_count_"+idMensaje).innerHTML=transport.responseText}})}function agregar_mensaje(){var mensaje=document.getElementById("mensaje").value;if(mensaje||mensaje=="Dej&aacute; tu mensaje!!!"){$('submit_mensaje').disabled=true;new Ajax.Request("ajax/mensajes",{method:'post',parameters:{agregar_mensaje_form:Form.serialize('agregar_mensaje_form')},onSuccess:function(transport){if(transport.responseText!='Error (1)'){var respuesta_ajax=document.createElement("div");respuesta_ajax.innerHTML=transport.responseText;var new_mensajes=document.getElementById('new_mensajes');new_mensajes.parentNode.insertBefore(respuesta_ajax,new_mensajes)}}});document.getElementById("mensaje").value="";$('submit_mensaje').disabled=false}else{document.getElementById('mensaje').style.backgroundColor="#B31000";setTimeout(function(){document.getElementById('mensaje').style.backgroundColor="#FFFFE0"},1500)}}function agregar_comentario(idMensaje){var comentario=document.getElementById('comentario_text_'+idMensaje).value;if(comentario){new Ajax.Request("ajax/comentarios",{method:'post',parameters:{add_comentario_form:Form.serialize('add_comentario_form_'+idMensaje)},onLoading:function(){document.getElementById('comentario_text_'+idMensaje).disabled=true;document.getElementById('new_ajax_comment_'+idMensaje).style.display="block";document.getElementById('new_ajax_comment_'+idMensaje).innerHTML='<div style="width:540px; height:24px; float:left; margin:10px 0px 10px 0px;" align="center"><img src="img/ajax-loader.gif" alt="" border="0"/></div>'},onSuccess:function(transport){if(transport.responseText!='Error (12)'){document.getElementById('new_ajax_comment_'+idMensaje).innerHTML=transport.responseText;$('add_comentario_form_'+idMensaje).toggle();document.getElementById('comentario_text_'+idMensaje).disabled=false}}})}else{document.getElementById('comentario_text_'+idMensaje).style.backgroundColor="#B31000";setTimeout(function(){document.getElementById('comentario_text_'+idMensaje).style.backgroundColor="#FFF"},1500)}}function subir(){if(document.documentElement.scrollTop<10){window.scrollTo(0,0)}else{window.scrollBy(0,-50);setTimeout("subir()",10)}}function textCounter(field,counter_field,limit){if($F(field).length>limit){$(field).value=$F(field).substring(0,limit)}else if($F(field).length==0){$(counter_field).style.display='none'}else{$(counter_field).style.display='block';$(counter_field).innerHTML=limit-$F(field).length+" car&aacute;cteres restantes."}}function validateContactoForm(){$('Siguiente').disabled=true;new Ajax.Request("ajax/contacto",{method:'post',parameters:{form_contacto:Form.serialize('form_contacto')},onSuccess:function(transport){if(transport.responseText!=''){$('mensaje_error').innerHTML=transport.responseText;$('mensajes').style.display='block'}else{$('form_contacto').submit()}}});$('Siguiente').disabled=false;return false}