// JavaScript Document
function cambiar_color_over(celda){
   celda.style.backgroundColor="#9BD8EE";
   celda.style.cursor='hand';
}
function cambiar_color_out(celda){
   celda.style.backgroundColor="#ffffff"
} 
function valida()
{
	
	error="";
	if(document.getElementById('nombre').value.length<2)
	error="Por favor inserta tu nombre\n";
	
	if(document.getElementById('titulo').value.length<2)
	error=error+"Por favor inserta el titulo de tu comentario\n";
	if(document.getElementById('mensaje').value.length<2)
	error=error+"Por favor inserta tu mensaje\n";
	
	if(document.getElementById('strCAPTCHA').value.length<4)
	error=error+"Por favor inserta el numero de confirmacion\n";
	
	if(error=="")
	{
		document.form1.submit();	
	}
	else
	{
		alert(error);
	}
}

function roll(img_name, img_src)
   {
   document[img_name].src = img_src;
   }
