function chkForm1(){

MSG = "Faltan los sgtes. datos:\n\n";

if (!document.f1.nombre.value) {MSG += "Nombre\n";}
if (!document.f1.email.value) { MSG += "E-Mail\n";}
if (!document.f1.comentario.value) { MSG += "Comentario\n";}


if (MSG == "Faltan los sgtes. datos:\n\n")
{
	return true;
}
else {alert(MSG); return false}

}



function chkForm2(){

MSG = "Faltan los sgtes. datos:\n\n";

if (!document.f2.nomb.value) {MSG += "Tu Nombre\n";}
if (!document.f2.mail.value) {MSG += "Tu E-Mail\n";}
if (!document.f2.nombamigo.value) {MSG += "Nombre de tu Amigo\n";}
if (!document.f2.mailamigo.value) { MSG += "E-Mail de tu Amigo\n";}

if (MSG == "Faltan los sgtes. datos:\n\n")
{
	return true;
}
else {alert(MSG); return false}

}


function chkForm3(){

MSG = "Faltan los sgtes. datos:\n\n";

if (!document.f3.nomb2.value) {MSG += "Tu Nombre\n";}
if (!document.f3.mail2.value) {MSG += "Tu E-Mail\n";}
if (!document.f3.nombamigo2.value) {MSG += "Nombre de tu Amigo\n";}
if (!document.f3.mailamigo2.value) { MSG += "E-Mail de tu Amigo\n";}

if (MSG == "Faltan los sgtes. datos:\n\n")
{
	return true;
}
else {alert(MSG); return false}

}