// RBFRS Extranet
// JavaScript Document: Footer which writes ciopyright data etc for inclusion on each web page

function WriteCopyright(){
	// define content (using html) to write the copyright message
	var MyFooter = "Royal Berkshire Fire and Rescue Service | Headquarters | 103 Dee Road | Tilehurst | Reading | Berkshire | RG30 4FS"
	MyFooter += "<br />"
	MyFooter += "Design and Copyright &copy; 2012 Royal Berkshire Fire and Rescue Service. All rights reserved."
	// return the content of MyFooter
	return MyFooter
}
// end menu



