function switchInfo(theEl) {
	
	var rcp = document.getElementById('switcher');
	var rch = document.getElementById('switcherH');
	
	if(theEl == 1) {
		rcp.innerHTML = "Type in your desired username. Usernames must be between 5 and 15 characters and contain no spaces.";
		rch.innerHTML = "Username";
	}
	else if(theEl == 2) {
	
	rch.innerHTML = 'E-Mail Address';
	rcp.innerHTML = 'Please enter your e-mail address. We will not use your e-mail address for spam. We will only use it to contact you with information about The Loop.<br><br>We will never give e-mail addresses out to third party companies.';
		
	}
	else if(theEl == 3) {
	
	rch.innerHTML = 'Password';
	rcp.innerHTML = 'Please enter your desired password. It must be at least 6 characters long for security reasons. Please try and make your password complex so it is harder to guess.';
		
	}
	else if(theEl == 4) {
	
	rch.innerHTML = 'Confirm Password';
	rcp.innerHTML = 'This is to check that you have typed your password in correctly.';
	
	}
	else if(theEl == 5) {
	
	rch.innerHTML = 'Date Of Birth';
	rcp.innerHTML = 'Please enter your date of birth. We keep this information for recording purposes.<br><br>We will not release this information.<br><br>Format is: DD-MM-YYYY';
	
	}
	else if(theEl == 6) {
	
	rch.innerHTML = 'Anti Spam Question';
	rcp.innerHTML = 'Are you a robot?<br><br>This simple maths question is to ensure that you are a human, not a spam robot filling the form in.';
	
	} else {
		
	rch.innerHTML = '';
	rcp.innerHTML = '';
	}

}