function getByIdM(id) {
    return document.getElementById(id);
}

function showMount (element)
 {
	if (element.style.display == "none")
		element.style.display = "";
	else
		 element.style.display = "none";
 }

