Hola dieguicho:
Creo que textfield es el input type=text... ¿verdad?...
Puedes crearte la "colección" o array de todos y recorrerlos con un bucle
function chequeo() {
var losInputs = document.getElementsByTagName("input");
for (var i = 0; i < losInputs.length; i ++)
if (losInputs[i].getAttribute("type") == "text")
if (losInputs[i].value != "") return true;
return false;
}
Y luego el botón de validación quedaría más o menos así:
<input type=button value=validar onclick="if (chequeo() == true) unForm.submit(); else alert('faltan rellenar campos');"
Lo hice a pelo, y no sé si funcionará, pero espero que al menos entiendas la idea.
Saludos