function validateNewsForm ( )
{
    valid = true;

    if ( document.subscribe_form.name.value == "" )
    {
        alert ( "Please fill in the 'Your Name' box." );
        valid = false;
    }
	else if ( document.subscribe_form.email.value == "" )
    {
        alert ( "Please fill in the 'Email' box." );
        valid = false;
    }

    return valid;
}

document.write("<A href='about.html'>About Us</A> | ");
document.write("<A href='disclaimer.html'>Disclaimer</A> | ");
document.write("<A href='privacy.html'>Privacy Policy</A> | ");
document.write(" <A href='terms.html'>Terms & Conditions</A> | ");
document.write("<A href='articles.html'>Articles</A> | ");
document.write("<A href='testimonials.html'>Testimonials</A> | ");
document.write("<A href='scientific.html'>Scientific Breakthroughs</A> | ");
document.write("<A href='why.html'>Why We're Better</A> | ");
document.write(" <A href='contact.html'>Contact</A>");