﻿// *********************************
// **** script for the BACK button
// *********************************
function goBack()
  {
  window.history.back()
  }


// *********************************
// **** script to add Logo to the top of every page --
// *********************************
function page_header(title,author_inits)
{
//alert("into page_title");
 document.write('<hr size=\"0\">');
 

 document.write('<table class=\"header_logo0\">');
 document.write('<tr>');
 document.write('<td class=\"header_logo1\"><img src=\"http:\/\/www.tulsamastergardeners.org\/images\/logo.png\" alt=\"Tulsa Master Gardener Logo\" \/><\/td>');
 document.write('<td class=\"header_logo2\"><h1>' +title +'<SUP><FONT size=\"-3\"><B>' +author_inits +'<\/B><\/FONT><\/SUP><\/h1><\/td>');
// document.write('<td class=\"header_logo3\"><img src=\"http:\/\/www.tulsamastergardeners.org\/images\/logo.png\" alt=\"Tulsa Master Gardener Logo\" \/><\/td>');
 document.write('<td class=\"header_logo3\"><input type=\"button\" value=\"Back\" onclick=\"goBack()\" \/><\/td>');
 document.write('<\/tr>');
 document.write('<\/table>');
 document.write('<hr size=\"0\">');
}
// -- End logo --

// *********************************
// **** script to add disclosure footer
// ********************************* 
function page_footer(uri,moddate) {
    var pagename=uri;
    var updated=moddate;
//alert(updated);
document.write('<div class=\"disclose_foot\">');
document.write('<p class=\"disclose_label\">Need More Help?<\/p>');
document.write('<p>Walk-ins are welcome at the Master Gardeners\' office at the O.S.U. Extension Center, 4116 E. 15th Street (Fairground Gate #6). You can reach us by <span class=\"disclose_bold\">phone<\/span> at <span class=\"disclose_bold\">(918) 746-3701<\/span>.  Our hours are from 9:00 a.m. to 4:00 p.m. Monday through Friday except County holidays.<\/p>'); 

document.write('<p><span class=\"disclose_TMG\">T<\/span>ulsa <span class=\"disclose_TMG\">M<\/span>aster <span class=\"disclose_TMG\">G<\/span>ardeners are Tulsa County residents and experienced gardeners who have received extensive training through the Cooperative Extension Service. Their desire is to share their knowledge, expertise and love of gardening with the Tulsa County gardening public. As volunteer representatives of the Oklahoma Cooperative Extension Service, <span class=\"disclose_TMG\">T<\/span>ulsa <span class=\"disclose_TMG\">M<\/span>aster <span class=\"disclose_TMG\">G<\/span>ardeners follow the research-based recommendations of the Cooperative Extension Service. <\/p>');

document.write('<p class=\"disclose_version\">URI:' +pagename +' Date Modified: ' +updated + '<\/p>');
document.write('<\/div>');
}



















