   function contactus()
   {
         window.open("contact.php","contact", "width=360,height=450");
   }

   function mOver(e,d,f) {
          e.style.backgroundColor = d;
          e.style.color = f;
   }
   function mOut(e) {
          e.style.backgroundColor = '';
          e.style.color = '';
   }
   function mOut2(e,d,f) {
          e.style.backgroundColor = d;
          e.style.color = f;
   }   
   function trans(e) {
       var f = e.substr(e.length-1);
       var g = e.substr(0,e.length-1);
       if (f=='E') {
           document.getElementById(e).style.display = '';
           document.getElementById(g+'C').style.display = 'none';
       }else {
           document.getElementById(e).style.display = '';
           document.getElementById(g+'E').style.display ='none';       
       }   
   }
   function about(id) {
       for (i=1;i<=3;i++) {
          document.getElementById('about'+i).style.display = 'none';
       }   
       document.getElementById('about'+id).style.display = '';   
       if (id==1) document.getElementById('sub').innerHTML = 'ABOUT US'; 
       if (id==2) document.getElementById('sub').innerHTML = 'OUR LEADERS'; 
       if (id==3) document.getElementById('sub').innerHTML = 'OUR FACILITY'; 
   }
   function event(id) {
       for (i=1;i<=2;i++) {
          document.getElementById('event'+i).style.display = 'none';
       }   
       document.getElementById('event'+id).style.display = '';   
       if (id==1) document.getElementById('sub').innerHTML = 'CALENDAR'; 
       if (id==2) document.getElementById('sub').innerHTML = 'FLYERS'; 
   }   
   function worship(id) {
       for (i=1;i<=2;i++) {
          document.getElementById('worship'+i).style.display = 'none';
       }   
       document.getElementById('worship'+id).style.display = '';   
       if (id==1) document.getElementById('sub').innerHTML = 'WORSHIP SCHEDULE'; 
       if (id==2) document.getElementById('sub').innerHTML = 'MESSAGES'; 
   } 
   function ministry_(id) {
       for (i=1;i<=14;i++) {
          document.getElementById('ministry'+i).style.display = 'none';
       }   
       document.getElementById('ministry'+id).style.display = '';   
   }    
   function ministry(id) {
       //for (i=1;i<=14;i++) {
       //   document.getElementById('ministry'+i).style.display = 'none';
       //}   
       //document.getElementById('ministry'+id).style.display = '';   
       location.href="mini_"+id+".html";
   }       
   function contact(id) {
       for (i=1;i<=2;i++) {
          document.getElementById('contact'+i).style.display = 'none';
       }   
       document.getElementById('contact'+id).style.display = '';   
   }   
   function resource(id) {
       for (i=1;i<=2;i++) {
          document.getElementById('resource'+i).style.display = 'none';
       }   
       document.getElementById('resource'+id).style.display = '';   
   }   
   function mOverIMG(id) {
       document.getElementById(id+'IMG').src = "images/icon/"+id+"_over.JPG"; 
       document.getElementById(id+'TD').style.backgroundColor = '#F7B3DA'; 
       document.getElementById(id+'TD').style.color ='#C71585';    
       //#C5E3BF
   }
   function mOutIMG(id) {
       document.getElementById(id+'IMG').src = "images/icon/"+id+".JPG"; 
       document.getElementById(id+'TD').style.backgroundColor = ''; 
       document.getElementById(id+'TD').style.color ='';    
   }
