function no(p) 
{ 
	p.style.color='#0000FF';
	//p.style.fontSize='18px';
} 

function si(p)
{
	p.style.color='#FF0000';
	//p.style.fontSize='19px';
}

function borrar()
{
	/*document.form.cuerpo.value='';
	document.form.titulo.value='';*/
	document.form.cuerpo.clear();
	document.form.titulo.clear();
}

function limpiar(formId) {
	frm = document.getElementById(formId);
	if (!frm) return;
	for(i=0; i<frm.elements.length; i++){
		if (frm.elements[i].type == 'text')
			frm.elements[i].value = '';
	}
}