// JavaScript Document
function toggleLayer(whichLayer) {
	if (document.getElementById) {
	var e = document.getElementById('amm_wt_url_hint_box')
		e.style.display = e.style.display == "none" ? "block":"none";
	}
}