function menus(){
	document.write("<map name='m_index_r2_c2'>");
	document.write("<area shape='rect' coords='409,20,461,35' href='contact.htm'>");
	document.write("<area shape='rect' coords='326,20,395,35' href='pacificlinks.htm'>");
	document.write("<area shape='rect' coords='257,20,308,35' href='archives.htm'>");
	document.write("<area shape='rect' coords='165,20,242,36' href='currentissues.php'>");
	document.write("<area shape='rect' coords='76,20,147,36' href='whoweare.htm'>");
	document.write("<area shape='rect' coords='24,20,61,37' href='index.htm'>");
	document.write("</map>");
};


function whowearemenus(){
	document.write("<img src='images/arrow-right.gif'>&nbsp;&nbsp;<a href='whoweare.htm' target='_top'>Mission Statement</a><br><br>");
	document.write("<img src='images/arrow-right.gif'>&nbsp;&nbsp;<a href='members.htm' target='_top'>Members</a><br><br>");
	document.write("<img src='images/arrow-right.gif'>&nbsp;&nbsp;<a href='staff.htm'>Staff</a><br><br>");
	document.write("<img src='images/arrow-right.gif'>&nbsp;&nbsp;<a href='historical.htm'>Historical List</a><br><br>");
	document.write("<img src='images/arrow-right.gif'>&nbsp;&nbsp;<a href='officers.htm' target='_top'>Officers</a><br><br>");
	document.write("<img src='images/arrow-right.gif'>&nbsp;&nbsp;<a href='bod.htm' target='_top'>Board of Directors</a><br><br>");
};

function header(){
	document.write("<script type='text/javascript'>");
	document.write("AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','800','height','416','src','header','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','header' ); //end AC code");
	document.write("</script><noscript>");
	document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0' width='800' height='416'>");
	document.write("<param name='movie' value='header.swf'>");
	document.write("<param name='quality' value='high'>");
	document.write("<embed src='header.swf' quality='high' pluginspage='http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='800' height='416'></embed>");
	document.write("</object></noscript>");
};


function footer(){
	document.write("<img src='images/maps.jpg' border='0'><br><br>");
	document.write("<b>T:</b> (671)472-2719 &nbsp;&nbsp;&nbsp; <b>F:</b>(671)473-3004 &nbsp;&nbsp;&nbsp; <b>E:</b> <a href='mailto:apil@guam.net'>apil@guam.net</a>");
	document.write("<br>&copy; 2009 APIL. All rights reserved.");
};

menu_status = new Array();
function showHide(theid){
	 
	
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);

        if(menu_status[theid] != 'show') {
           switch_id.className = 'show';
           menu_status[theid] = 'show';
        }else{
           switch_id.className = 'hide';
           menu_status[theid] = 'hide';
        }
    }
};