function bathgate_header_b(directory, wide)

// Inserts standard header text, including a menu bar and the current date 
// (all of width 'wide'), for the range of files  comprising the web site 
// for St Columba's Episcopal Church Bathgate.  'directory' will be './' 
// for the highest level of web pages ('index', 'link') and normally 
// '../' otherwise, apart from 'news' where it will be '../..'.

// Uses the JavaScript files
// 		../scripts/news_reference.js
//		../scripts/today.js
// which must be declared in the enclosing file.

// To make sense, MUST be used following use of 'bathgate_header_a', with the 
// call to 'news_reference' sandwiched between them.

// PG:10.08.2011.

{	var	left	= 2*wide/3;
		right	= wide - left;

	document.write(' <script>news_reference(\'bnews\',' + directory + ')</script> | ' +
		'<a href =\"' + directory + 'bathgate/building.html\">building</a> | ' +
		'<a href =\"' + directory + 'bathgate/people.html\">people</a>' +
		'</div></td>');
	document.write('<td align=\"right\" width=\"' + right +'\">');
	document.write('<div class=\"menu\"><strong>' + 
		'<script>today()</script></strong></div></td>' + '</tr>');
	document.write('<tr height=\"20\">' +
      	'<td colspan=2> </td>' +
		'</tr>');
	document.write('</table>');
	}




// End of file bathgate_header_b.js.


