/*function to change email contact details throughout*/
function addresscode(message){


  var user = "coordinator";
  var site = "seniormomentum.kingston.org.au";
  document.write('<a href=\"mailto:' + user + '@' + site + '\">');
  document.write(message + '</a>');

}


function makeLinks(){
document.write('<table width="75%" border=0 align="center"><tr align="center"><td>');
			                                          
addresscode("contact Senior Momentum");
document.write('</td></tr></table>');



}

function makeTQLinks(){
document.write('<table width="75%" border=0 align="center"><tr align="center"><td>');
document.write('<a href="privacy.html">our privacy policy</a> ');
document.write('</td><td>');
document.write('<a href = "http://www.tasmanian-gothic.com" title="More information about the designer">');
document.write('about Elizabeth Barsham</a>');
document.write('</td><td>');
addresscode('contact Senior Momentum');
document.write('</td></tr></table>');


}





