function fnDisplayDate()
	{
    var this_month = new Array(12);
    var this_wday = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
    this_month[0]  = "January";
    this_month[1]  = "February";
    this_month[2]  = "March";
    this_month[3]  = "April";
    this_month[4]  = "May";
    this_month[5]  = "June";
    this_month[6]  = "July";
    this_month[7]  = "August";
    this_month[8]  = "September";
    this_month[9]  = "October";
    this_month[10] = "November";
    this_month[11] = "December";
    var today = new Date();
    var wday = today.getDay();
    var day   = today.getDate();
    var month = today.getMonth();
    var year  = today.getYear();
    if (year < 1900)
		{
        year += 1900;
		}
    document.write(this_wday[wday]+", "+this_month[month]+" "+day+", "+year);
	}


function fnTop()
	{
	var str="";
	str+="<table cellpadding='0' cellspacing='0' border='0' width='780'>";
	str+="<tr class='toplinks' onMouseOver='hideall();'>";
	str+="	<td class='date'><script language='JavaScript' type='text/javascript'>fnDisplayDate();</script></td>";
	str+="	<td align='right'><img src='" + linkPath + "images/toplinks.jpg' border='0' width='320' height='34' alt='' USEMAP='#toplinks_Map'></td>";
	str+="</tr>";
	str+="<tr><td colspan='2' bgcolor='#FFFFFF'>";
	str+="	<table cellpadding='0' cellspacing='0' border='0' width='780'>";
	str+="	<tr onMouseOver='hideall();'>";
	str+="		<td><a href='" + linkPath + "index.htm'><img src='" + linkPath + "images/logo.jpg' border='0' width='178' height='146' alt='National Consortium of Black Women in Ministry'></a></td>";
	str+="		<td rowspan='2'><img src='" + linkPath + "images/organization.jpg' border='0' width='242' height='160' alt=''></td>";
	str+="	</tr>";
	str+="	<tr><td><img src='" + linkPath + "images/menu.jpg' border='0' width='504' height='23' alt='' USEMAP='#menu_Map'></td></tr>";
	str+="	</table>";
	str+="</td></tr>";
	str+="</table>";
	
	str+="<MAP NAME='toplinks_Map'>";
	str+="	<AREA SHAPE='rect' ALT='' COORDS='48,3,92,32' HREF='" + linkPath + "index.htm'>";
	str+="	<AREA SHAPE='rect' ALT='' COORDS='131,3,224,33'  REF='" + linkPath + "members_only.html'>";
	str+="	<AREA SHAPE='rect' ALT='' COORDS='256,3,311,33' HREF='" + linkPath + "sitemap.html'>";	
	str+="</MAP>";
	
	str+="<MAP NAME='menu_Map'>";
	str+="	<AREA SHAPE='rect' ALT='' COORDS='13,0,65,22'   HREF='javascript:void(0);' onmouseover='menu(4);'>";
	str+="	<AREA SHAPE='rect' ALT='' COORDS='83,0,149,22'  HREF='javascript:void(0);' onmouseover='menu(0);'>";
	str+="	<AREA SHAPE='rect' ALT='' COORDS='166,0,227,22' HREF='javascript:void(0);' onmouseover='menu(1);'>";
	str+="	<AREA SHAPE='rect' ALT='' COORDS='246,0,327,22' HREF='javascript:void(0);' onmouseover='menu(2);'>";
	str+="	<AREA SHAPE='rect' ALT='' COORDS='345,0,402,22' HREF='javascript:void(0);' onmouseover='menu(3);'>";				
	str+="	<AREA SHAPE='rect' ALT='' COORDS='423,0,485,22' HREF='" + linkPath + "contact_us.html' onmouseover='hideall();'>";
	str+="</MAP>";

	document.write(str);
	}

function fnBottom()
	{
	var str="";
	str+="<table cellpadding='0' cellspacing='0' width='760' align='center'>";
	str+="<tr>";
	str+="	<td>";
	str+="		<a href='" + linkPath + "about_us/about_us.html' class='btmlnks'>About Us</a>&nbsp;|";
	str+="		<a href='" + linkPath + "membership/why_join_ncbwim.html' class='btmlnks'> Membership</a>&nbsp;|";
	str+="		<a href='" + linkPath + "leadership/national_board_of_directors.html' class='btmlnks'> Leadership</a>&nbsp;|";
	str+="		<a href='" + linkPath + "local_chapters/establishing_a_local_chapter.html' class='btmlnks'> Local Chapters</a>&nbsp;| ";
	str+="		<a href='" + linkPath + "articles.html' class='btmlnks'> National Programs</a>&nbsp;|";
	str+="		<a href='" + linkPath + "contact_us.html' class='btmlnks'> Contact Us</a>";
	str+="	</td>";
	str+="	<td class='copyrights'>&copy; 2010 NCBWIM. All rights reserved by NCBWIM</a></td>";
	str+="</tr>";
	str+="</table>";
	document.write(str);
	}
