function TurnForm(layer_id, link_id) {
	var Layer = document.getElementById(layer_id);
	var Switch = document.getElementById(link_id);
	if (Switch.className == 'SwitchOff') {
		Layer.style.display = 'none';
		Switch.className = 'SwitchOn';
		Switch.title = Switch.title.replace('Show', 'Hide');
	}
	else {
		Layer.style.display = '';
		Switch.className = 'SwitchOff';
		Switch.title = Switch.title.replace('Hide', 'Show');
	}
}