function showLogin() {

	hideRestore();
	document.getElementById('boxLogin').style.display='';

}

function hideLogin() {

	hideRestore();
	document.getElementById('boxLogin').style.display='none';

}

function showRestore() {

	hideLogin();
	document.getElementById('boxRestore').style.display='';

}

function hideRestore() {

	document.getElementById('boxRestore').style.display='none';

}

function checkChoice() {

	choice = document.getElementById('restore').checked;

	if(choice) {

		document.getElementById('loginform').style.display = 'none';
		document.getElementById('wait').style.display = '';

	}

}
