function gebi( id )
{
	return document.getElementById( id )
}

function visibility( id )
{
	var blockId = gebi( id );
	blockId.style.display = blockId.style.display == "none" ? "" : "none";
}

function go_to( href )
{
	location.href = href;
	return true;
}
