function Ventana(url,a,b){
window.open(url,'','width='+a+', height='+b+', scrollbars=1, menubar=no, location=no,left=200,top=120, resizable=yes');
}


function Enviar(frm){
if(frm.nombre.value==''){
alert('Ingrese su nombre');
frm.nombre.focus();
return false;
}

if(frm.mensaje.value==''){
alert('Ingrese su mensaje');
frm.mensaje.focus();
return false;
}

}

function pasar(color){
document.getElementById('nombre').style.color=color;
document.getElementById('mensaje').style.color=color;
document.getElementById('color_input').value =color;
document.getElementById('color').style.background =color;


//$("#nombre").css("color",color);
//$("#mensaje").css("color",color);
//$("#color_input").text(color);
//$("#color").css("background-color",color);


}
