function ValidarAmigo()

{
if ( document.frmMandarNoticia.nombre.value=="" )

   {
    alert ("Introduzca su nombre");
	document.frmMandarNoticia.nombre.focus()
	return false
   }

if ( document.frmMandarNoticia.email.value=="" )

   {
    alert ("Introduzca su E-mail");
	document.frmMandarNoticia.email.focus()
	return false
   }

if ( document.frmMandarNoticia.nombrea.value=="" )

   {
    alert ("Introduzca el nombre de la persona a la que le va a mandar la noticia");
	document.frmMandarNoticia.nombrea.focus()
	return false
   }
   
if ( document.frmMandarNoticia.emaila.value=="" )

   {
    alert ("Introduzca el E-mail de la persona a la que le va a mandar la noticia");
	document.frmMandarNoticia.emaila.focus()
	return false
   }
   
document.frmMandarNoticia.submit()
} 

function MandarNoticia(id) {
  Ventana1=window.open("../noticias/popupNoticia.asp?idnoticia="+id,"Noticias","width=500,height=250");
  Ventana1.focus()
//alert("En construccion. Estara disponible en breve.");
}

function ImprimirNoticia(id)
{
  Ventana1=window.open("../noticias/popupPrintNoticia.asp?idnoticia="+id,"Noticias","width=600,height=450,scrollbars");
  Ventana1.focus()

}
