function writeHeader(icurrent){
var fixedTopH=114; var percentOfH = 0.99; //for scrollbars
var str='',str1='';

// tabs: 
mmLoadMenus();
writeTABS(icurrent);

writeHeaderOnly();
scrollingFnV(fixedTopH,percentOfH); //scrollbars (inserts div)
}


function writeHeaderOnly(){
var str='',str1='';

str+='<table bgcolor="#F5FFE5" cellspacing="0" cellpadding="4"  align="center" width="100%">';
document.write(str);
writeHD(); //header 
str1+='<tr><th>'; 
document.write(str1);
}

function writeFooter(){
var str='';

//str+='<img src="Pictures/line3a.gif" align="middle" width="100%">';
str+='<\/div><\/th><\/tr><\/table>';
str+='<img src="Pictures/line3a.gif" align="middle" width="100%">';
document.write(str);
}

function writeFooterOnly(){
var str='';

str+='<\/th><\/tr><\/table>';
str+='<img src="Pictures/line3a.gif" align="middle" width="100%">';
document.write(str);
}


function writeHD(){
var str='';
str+='<tr>';
str+='<th align="center" valign="middle">';
str+='<img src="Pictures\/line3a.gif" align="middle" width="100%" alt="">';
str+=' <table cellpadding="0" width="100%">';
str+='  <tr>';
str+='  <th align="left">';
str+='   <img src="Pictures\/cross4.gif"  height="60" alt="">';
str+='  <\/th>';
str+='  <th class="textHeader1"  align="center">';
str+='   Holy Trinity Greek Orthodox Church <br>';
str+='   <a href="directions.html" title="Click for Directions"> ';
str+='   Baton Rouge, Louisiana<\/a>';
str+='  <\/th>';
str+='  <th align="center">';
str+='   <a href="index.html" target="_top" title="Home">';
str+='   <img src="Pictures\/churchHouse.gif" border="0" height="48" alt=""><br>';
str+='   <span style="font-size:10px;">HOME<\/span><\/a>';
str+='  <\/th>';
str+='  <\/tr>';
str+=' <\/table> ';
str+='<img src="Pictures\/line3a.gif"  align="middle" width="100%" alt="">';
str+='<\/th>';
str+='<\/tr>';
document.write(str);
}

function writeFT(){
var str='';
str+='<tr>';
str+='<th align="center" valign="middle">';
str+=' <table cellpadding="0" width="100%">';
str+='  <tr><th align="center">';
str+='	 <a href="index.html" target="_top" title="Home">';
str+='	 <img src="Pictures\/churchHouse.gif" border="0" height="50" alt=""><br>';
str+='	 <span style="font-size:10px;">HOME<\/span><\/a>';
str+='	<\/th><\/tr><\/table><\/th><\/tr>';
document.write(str);
}
