// JavaScript Document

function show_object(id)
{
	document.getElementById(id).style.display='block';
}

function hide_object(id)
{
	document.getElementById(id).style.display='none';
}


