<!-- Bromley Speaker site's main style sheet -->
document.write('<link rel=StyleSheet href="styles/mainstyle.css" type="text/css">');

<!-- Style for Navigation Bar. Author: Woork http://woork.blogspot.com/2008/02/elegant-navigation-bar-using-css.html -->
document.write('<link href="styles/topbar.css" rel="stylesheet" type="text/css" />');

<!-- Rounded Box's style sheet and associated java script Author: http://www.456bereastreet.com/archive/200609/transparent_custom_corners_and_borders_version_2/-->
<!-- more boxes at http://www.cssjuice.com/25-rounded-corners-techniques-with-css/ -->
document.write('<link href="styles/box/cb.css" rel="stylesheet" type="text/css"/>');
document.write('<script type="text/javascript" src="styles/box/cb.js"></script>');

<!-- Code that given next meeting date. Author: Vishvanath Hirekodi -->
document.write('<script language="javascript" src="scripts/next_meeting_script.js"><\/script>');


<!-- this script generates common HTML pieces -->
<!-- code that generates the navigation tabs and highlights the current channel/section-->
function header(currentSection)
{

var cText = '<table ><tr><td>';
cText += '<img src="images/BS Club Logo.png" align="left"></td></tr></table>' ;

cText +=  "<table width=100%><tr><td><div id='navbar'><span class='inbar'><ul>";

if (currentSection == "home")
   cText += "<li class='navhome'><a href='index.htm'><span>Home</span></a></li>";
else
	cText += "<li><a href='index.htm'><span>Home</span></a></li>" ;

if (currentSection == "aboutus")
   cText += "<li class='navhome'><a href='aboutus.htm'><span>About us</span></a></li>";
else
	cText += "<li><a href='aboutus.htm'><span>About us</span></a></li>" ;  

if (currentSection == "location")
   cText += "<li class='navhome'><a href='home.htm'><span>Location</span></a></li>";
else
	cText += "<li><a href='location.htm'><span>Location</span></a></li>" ;

if (currentSection == "news")
   cText += "<li class='navhome'><a href='news.htm'><span>News</span></a></li>";
else
	cText += "<li><a href='news.htm'><span>News</span></a></li>" ;
  
if (currentSection == "resources")
   cText += "<li class='navhome'><a href='resources.htm'><span>Resources</span></a></li>";
else
	cText += "<li><a href='resources.htm'><span>Resources</span></a></li>" ;
	
cText += "</ul></span></div></td></tr></table>" ;
document.write(cText);
}

<!-- code for footer, copyright, and Analytics code -->
function footer()
{
<!-- Google Analytics -->
 var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
 document.write("<hr />" + unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
 try { 
   var pageTracker = _gat._getTracker("UA-10092059-1"); 
   pageTracker._trackPageview(); 
   } catch(err) {}
  
<!-- Ends of Google Code -->

 var cText = '';

  cText += '<table><tr>'; 
  cText += '<td class="copytext">Bromley Speakers is part of <a href="http://toastmasters.org/" target="new">Toastmasters International.</a></td>' ;
  cText += '</tr>' ;
  cText += '<tr>' ;
  cText += '<td class="copytext">For more information meet us at <a href="location.htm">Ripley Arts Centre</a> on ' ;
  cText += '<script language="javascript">document.write(getNextMeetingDate().toLocaleDateString());<\/script>' ;
  cText += '</td></tr>' ;
  cText += '<tr><td class="copytext"><a href="mailto:vppublicrelations AT bromleyspeakers.co.uk">Webmaster\'s</a> contact</td></tr></table>' ;
  document.write(cText);
}


<!-- 	return the file name 1-10.jpg, randomly -->
function writeMainPageImage()
{
 var folderName = "photo_gallery/mainpage_pics/" ;
 var extension = ".jpg" ;
 var rand_no = Math.floor((10)*Math.random()) + 1;
 var imgSRC = folderName + rand_no + extension ;
 var imgText = "<IMG HEIGHT=200 SRC='" + imgSRC + "' ALT='(C)http://www.sxc.hu/'>" ;
 document.write(imgText);
}

