// JavaScript Document
function fnmenu(){
var str="<img src='images/menu.gif' alt='' width='224' height='244' border='0' usemap='#menu_map'>";
document.write(str);
}

function fnmap(){
var str="";
str = str+"<map name='menu_map'>";
str = str+"  <area shape='rect' coords='5,4,217,38' href='history.asp' title='History'>";
str = str+"  <area shape='rect' coords='5,45,217,76' href='grand_mast_off.asp' title='Grand Master & Grand Officers'>";
str = str+"  <area shape='rect' coords='5,80,217,108' href='lodge.asp' title='Lodges'>";
str = str+"  <area shape='rect' coords='5,114,217,147' href='service.asp' title='Service Project'>";
str = str+" <area shape='rect' coords='5,154,217,184' href='fraternal_relationship.asp' title='Fraternal Relations'>";
str = str+"  <area shape='rect' coords='5,191,217,220' href='visitors.asp' title='Visitors Impressions'>";
str = str+" </map>";
document.write(str);
}
function fnhome(){
var str="<a href='index.asp'><img src='images/home.jpg' width='60' height='26' title='Home' border='0'></a>";
document.write(str);
}
function fnbottom(){
var str="<a href='webmaster.html' class='bluelnks'>Webmaster</a>&nbsp;  &nbsp;| &nbsp;&nbsp; 2005 Grand Lodge of South India &nbsp;&nbsp;";
document.write(str);
}