function showLoginBox(id)	{
	document.getElementById(id).style.display = "block";
}

function closeLoginBox(id)	{
	document.getElementById(id).style.display = "none";
}

