<!-- Hide from old browsers// cloak mailadress function writeEmail(name,domain,screenLetters)	{		visible=(typeof(screenletters)=="undefined")? name+"@"+domain : screenLetters; 		document.write ('<a href=mailto:'+name+'@'+domain+'>'+visible+'</a>'); 	} // mark external links - open new window/tab (rel="external")$(document).ready(function(){  $('a, area').filter(function() {    return this.hostname && (this.hostname).split(":")[0]      !== (location.hostname).split(":")[0]    || $(this).attr('rel') == 'external';  })  .not(':has(img, div, mailto)')  .addClass('external')  .end()  .click(function(e) {    open(this.href);    e.preventDefault();  });});// Stop hiding from old browsers -->
