function chkMtf()
{
  	MSG = "Faltan los sgtes. datos:\n\n";

	if (!document.f1.nombre.value) {MSG += "Nombre.\n";}
	if (document.f1.comuna[document.f1.comuna.selectedIndex].value == 0){MSG += "Comuna.\n";}
	if (document.f1.meil.value) {if (!isValidEmail(document.f1.meil.value)){MSG += "El E-Mail de contacto debe ser válido.\n";}}else{MSG += "E-Mail.\n";}
	if (!document.f1.coment.value) {MSG += "Comentario de la foto.\n";}
	if (!document.f1.foto.value) {MSG += "Foto.\n";}

  	if (MSG == "Faltan los sgtes. datos:\n\n")
 	{return true;}
 	else {alert(MSG);return false;}
}

function isValidEmail(str)
{
   return (str.indexOf(".") > 2) && (str.indexOf("@") > 0);
}

function chkMeilInt()
{
  	MSG = "Faltan los sgtes. datos:\n\n";

	if (!document.f1.nombre.value) {MSG += "Nombre.\n";}
	if (!document.f1.ciudad.value){MSG += "Ciudad.\n";}
	if (!document.f1.comuna.value){MSG += "Comuna.\n";}
	if (document.f1.meil.value) {if (!isValidEmail(document.f1.meil.value)){MSG += "El E-Mail de contacto debe ser válido.\n";}}else{MSG += "E-Mail.\n";}
	if (!document.f1.coment.value) {MSG += "Comentario de la foto.\n";}

  	if (MSG == "Faltan los sgtes. datos:\n\n")
 	{return true;}
 	else {alert(MSG);return false;}
}

function chkContacto()
{
  	MSG = "Faltan los sgtes. datos:\n\n";

	if (!document.f1.nombre.value) {MSG += "Nombre.\n";}
	if (!document.f1.ciudad.value){MSG += "Ciudad.\n";}
	if (!document.f1.comuna.value){MSG += "Comuna.\n";}
	if (document.f1.meil.value) {if (!isValidEmail(document.f1.meil.value)){MSG += "El E-Mail de contacto debe ser válido.\n";}}else{MSG += "E-Mail.\n";}
	if (document.f1.destino[document.f1.destino.selectedIndex].value == 0){MSG += "Destinatario.\n";}
	if (!document.f1.coment.value) {MSG += "Comentario de la foto.\n";}

  	if (MSG == "Faltan los sgtes. datos:\n\n")
 	{return true;}
 	else {alert(MSG);return false;}
}

function chkBusca()
{
  	MSG = "Faltan los sgtes. datos:\n\n";

	if (!document.f1.busqueda.value) {MSG += "Debe ingresar una o mas palabras.\n";}

  	if (MSG == "Faltan los sgtes. datos:\n\n")
 	{return true;}
 	else {alert(MSG);return false;}
}
