function showIcons() {
	var icons = document.getElementsByTagName('A');
	for(i=0; i<icons.length; i++) {
		if(icons[i].className=='noscript'){
			icons[i].className = 'scriptAvailable';
		}
	}
}

if (window.attachEvent) window.attachEvent("onload", showIcons);
if (window.addEventListener) window.addEventListener( "load", showIcons, false );


function mailpage()

{

  mail_str = "mailto:?subject=" + document.title.replace(/&/, "and");
  mail_str += "&body=You may be interested in the following page on the Registrar of Community Housing website.\f \f " + location.href + " \f \f";
  mail_str += "(Please click on the link if your email software allows otherwise copy and paste the whole link into your web browser to view the page)";

  location.href = mail_str;

}



// Execute function

