// JavaScript Document

function hide_layer( layerid ) {
	obj = document.getElementById( layerid );
	if( obj ) {
		obj.style.display = 'none';
	}
}

