// JavaScript Document
function alerta(campo)
{ alert("Please, complete the field "+campo) }
//-------------------------------------------------------------------------
function validar(newsform)
{
if (document.newsform.email.value == "Mail")
{ alerta('\"E-mail\"'); document.newsform.email.focus(); return true; }
if (document.newsform.name.value == "Name")
{ alerta('\"Name\"'); document.newsform.name.focus(); return true; }

document.newsform.submit()
}

