function navBar()
{
    document.write("<a href='index.html'>Main</a>");
    document.write("<a href='members.html'>Members</a>");
    document.write("<a href='research.html'>Research</a>");
    document.write("<a href='publications.html'>Publications</a>");
    document.write("<a href='presentations.html'>Presentations</a>");
    document.write("<a href='more.html'>More</a>");
}

function mainPic()
{
    document.write("<img src='images/mainpicture.jpg' width='231' height='301' alt='Cathedral of Learning' />");
}

function contactInfo()
{
    document.write("Department of Ophthalmology<br />");
    document.write("University of Pittsburgh<br />");
    document.write("Eye and Ear Institute, Room 914<br />");
    document.write("203 Lothrop St.<br />");
    document.write("Pittsburgh, PA 15213<br />");
    document.write("Phone: (412) 647-2313<br />");
    document.write("Email: <a href='mailto:matt@smithlab.net?subject=Mail From SmithLab.Net'>matt@smithlab.net</a><br />");
    document.write("Directions: <a href='directions.html'>link</a><br />");
}

function copyrightStatement()
{
    document.write('Copyright &copy; 2011 by Matthew A. Smith, Unversity of Pittsburgh. All rights reserved.');
}

