var profile_window;
function profile(id)
{
	if (profile_window) {
		close_profile(profile_window);
	}
	profile_window = id;
	$('profile_'+id).style.display = 'block';
	/*
	if (auto) {
		self.onmouseout = function()
		{
			$('profile_'+id).style.display = 'none';
		}
	}*/
}
function close_profile(id)
{
	$('profile_'+id).style.display = 'none';
}
function awards()
{
	$('awards').style.display = 'block';
}
function awards_close()
{
	$('awards').style.display = 'none';
}
