// JavaScript Document
function UpdateBlock(id){
	var Block = document.getElementById('user_block_'+id);
	if(!Block){return false;}
	Block.style.display = Block.style.display == 'none' ? '' : 'none';
	return false;
}
