// JavaScript Document
<!-- 
function toggleLogin() {
	document.getElementById('logininfo').style.display = document.getElementById('returning').checked ? "inline" : "none";
}
document.body.onload = toggleLogin;

//--> 