﻿function SwitchTextBox(Switch) {
	if (Switch) {
		document.getElementById('FakePasswordTextBox').style.display = "none";
		document.getElementById('ctl00_LogInUC_PasswordTextBox').style.display = "inline";
		document.getElementById('ctl00_LogInUC_PasswordTextBox').focus();
	} else {
		document.getElementById('ctl00_LogInUC_PasswordTextBox').style.display = "none";
		document.getElementById('FakePasswordTextBox').style.display = "inline";
	}
}
function SwitchInformation() {
	document.getElementById('ctl00_LogInUC_LoginInformation').innerHTML = "<a href='Register1.aspx'>Registrera dig</a>";
}
