function show_add_point() {
	var add_to_text = document.getElementById('add_to_text');
	add_to_text.innerHTML = '';
	add_to_text.appendChild(point_select);

	var name = document.createElement('input');
	name.setAttribute('type', 'text');	
	add_to_text.appendChild(name);

	var button = document.createElement('input');
	button.setAttribute('type', 'button');
	button.setAttribute('value', 'add point ^');	
	button.onclick = function () {
		var id = document.getElementById('point_select').options[document.getElementById('point_select').selectedIndex].value;
		document.getElementById('blog_body').value = document.getElementById('blog_body').value + ' [point='+id+']'+ name.value +'[/point] ';
	};
	add_to_text.appendChild(button);
}
function show_add_area() {
	var add_to_text = document.getElementById('add_to_text');
	add_to_text.innerHTML = '';
	add_to_text.appendChild(area_select);

	var name = document.createElement('input');
	name.setAttribute('type', 'text');	
	add_to_text.appendChild(name);

	var button = document.createElement('input');
	button.setAttribute('type', 'button');
	button.setAttribute('value', 'add area ^');	
	button.onclick = function () {
		var id = document.getElementById('area_select').options[document.getElementById('area_select').selectedIndex].value;
		document.getElementById('blog_body').value = document.getElementById('blog_body').value + ' [area='+id+']'+ name.value +'[/area] ';
	};
	add_to_text.appendChild(button);
}

