function toggleElement(strLayerID,strAction){
	var oElement = document.getElementById(strLayerID)
	if(oElement){
		oElement.style.display = strAction;
	}
}