//==========================================================================================
//Javacript library with functions for the melanieswan.com website
//Name: Melanie Swan
//Date Created: June 6, 2007
//Date Revised: January 4, 2012
//Filename: ms.js
//==========================================================================================


//document.write("HOWDY");
//document.write("<table id='calendar_table'>");
//document.write("<tr><th id='calendar_head' colspan='7'>", months[month], " ", year, "</th></tr>");



//==========================================================================================
//FUNCTION to display the header title and image
//==========================================================================================

function displayHeader() {


document.write("<p style=\"margin-left: 0in; font-weight: bold; font-size: 24pt;");
document.write("font-family:verdana, comic sans MS, arial, century gothic, sans-serif, lucida handwriting; \">");

document.write("<a href=\"index.html\">");
document.write("<img src=\"images/swan_logo_white.gif\" width=\"100\" height=\"63\" alt=\"Swan logo\" title=\"MS Futures Group\" style=\"float:left; margin-right:10px; margin-top: 0px; border-width: 0px;\" />");
document.write("</a>");

document.write("MS Futures Group");
document.write("</p>");

document.write("<div style=\"font-size: 16px; font-family:verdana, century gothic, arial, helvetica, sans-serif; text-align:justify;\">");

}   //end function


//==========================================================================================
//FUNCTION to display the menu
//==========================================================================================

function displayMenu() {

document.write("<p style=\"color: #600000; margin-left: 1.4in; margin-top: -.2in;\">");
document.write(" <a href=\"index.html\"><b>Home</b></a>");
document.write(" &nbsp;&nbsp; <a href=\"http://futurememes.blogspot.com/\"><b>Blog</b></a>");
document.write(" &nbsp;&nbsp; <a href=\"publications.html\"><b>Publications</b></a>");
document.write(" &nbsp;&nbsp; <a href=\"apps.html\"><b>Apps</b></a>");
document.write(" &nbsp;&nbsp; <a href=\"https://www.google.com/search?q=melanie+swan+&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a#q=melanie+swan&oe=utf-8&rls=org.mozilla:en-US:official&client=firefox-a&um=1&ie=UTF-8&hl=en&tbo=u&tbm=vid&source=og&sa=N&tab=wv&bav=on.2,or.r_gc.r_pw.r_cp.,cf.osb&fp=52b94b88d3faf1c9&biw=1366&bih=635\"><b>Video</b></a>");
document.write(" &nbsp;&nbsp; <a href=\"projects.html\"><b>Projects</b></a>");
document.write(" &nbsp;&nbsp; <a href=\"bio.html\"><b>Bio</b></a>");
document.write(" &nbsp;&nbsp; <a href=\"contact.html\"><b>Contact</b></a>");
document.write(" &nbsp;&nbsp; </p>");

}   //end function


//==========================================================================================
//FUNCTION to display the footer
//==========================================================================================

function displayFooter() {

document.write("<p><br /></p>");
document.write("<p style=\"text-align: center; font-size: 0.8em; clear: right;\"><b>");
document.write("Phone, SMS:&nbsp; 650 . 681 . 9482<br />");
document.write("Social media:&nbsp; LaBlogga<br />");
document.write("Second Life:&nbsp; Xantha Oe<br />");
document.write("Fax:&nbsp; 504 . 910 . 3803<br />");
document.write("Email:&nbsp; initial of first name @ melanieswan.com<br /></b><br />");
document.write("</p>");

//Copyright Information
document.write("<hr style=\"width:100%;\" />");
document.write("<p style=\"text-align: center; font-size: 0.75em;\">");
document.write("Copyright &copy; 1999-2012 &nbsp;MS Futures Group<br />");
document.write("</p>");

//Creative Commons portion
document.write("<!-- Creative Commons License -->");
document.write("<p style=\"text-align: center; font-size: 0.75em;\">");
document.write("<a href=\"http://creativecommons.org/licenses/by-nc-sa/3.0/\"><img src=\"images/somerights20.gif\" width=\"88\" height=\"31\" alt=\"Creative Commons license logo\" title=\"Creative Commons License\" style=\"text-align: center; margin-right:0px; margin-top: 0px; border-width: 0px;\" /></a><br />");
document.write("This work is licensed under a <a href=\"http://creativecommons.org/licenses/by-nc-sa/3.0/\">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License</a>");
document.write("</p>");
document.write("<!-- /Creative Commons License -->");


}   //end function


