/*for Metro Housing Organisation*/


function ShowHide(){
	if (!document.getElementById) return;
	var div1 = document.getElementById("show-with-script").style.display="block";
	var div2 = document.getElementById("hide-with-script").style.display="none";
	window.onLoad=ShowHide;
};

function mailpage()
{
mail_str = "mailto:?subject= Link to Metro Housing website page: " + document.title;
mail_str += "&body= " + document.title;
mail_str += "... at: " + location.href;
location.href = mail_str;
};

(function () {
	var head = document.getElementsByTagName("head")[0];
	if (head) {
		var scriptStyles = document.createElement("link");
		scriptStyles.rel = "stylesheet";
		scriptStyles.type = "text/css";
		scriptStyles.href = "css/script_styles.css";
		head.appendChild(scriptStyles);
	}
}());

