// JavaScript Document
function checkform()
{
	if (document.factura.nombre.value == '') {
	alert('There is a problem with the first field');
	return false;
	}
	alert('Todo BIEN');
	return true;
}