//		JavaScript Document
//		hide and show layers
// put this in js file

function displayById(id, status) {
	var thisObj = document.getElementById(id);
	if (status == 'show') {
		thisObj.style.display = '';		
	}
	if (status == 'hide') {
		thisObj.style.display = 'none';
	}
}