	if(document.layers) {   thebrowser = "NN4";     }
	
	function showTrainerFacilitator()
	{ 
		var trainerFacilitator = 
'				TRAINERS &frasl; FACILITATORS ONLY:' +
'						 <ol type="a">' +
'							<li>' +
'								<p>I found the training programme valuable for me as a trainer:' +
'								<br />' +
'								<input type="radio" id="trainingValuableAgree" name="trainingValuable" value="Agree" /><label>Agree</label>' +
'								<br />' +								
'							<input type="radio" id="trainingValuableDisagree" name="trainingValuable" value="Disagree" /><label>Disagree</label>' +
'							</p>' +
'							</li>' +
'							<li>' +
'								<p>In my opinion, the training programme was valuable for the majority of my trainees:' +
'								<br />' +
'								<input type="radio" id="opinionAgree" name="opinion" value="Agree" /><label>Agree</label>' +
'								<br />' +
'								<input type="radio" id="opinionDisagree" name="opinion" value="Disagree" /><label>Disagree</label>' +
'							 </p>' +
'							</li>' +
'						</ol>';	

	// Write question to page
		if (document.layers) // if Netscape 4
		{
			document.questionFive.document.write(trainerFacilitator);
			document.questionFive.document.close();
		}
		else
		{
			 document.getElementById('questionFive').innerHTML = trainerFacilitator; 
		} // end if
		
	} // end showTrainerFacilitator
	
	function showTraineeUser()
	{
		var traineeUser =  
'					TRAINEES &frasl; USERS ONLY: &quot;As a result of using this training programme&hellip;' +
'					<ol type="a">' +	
'						<li>' +
'							<p>&hellip;I have a better understanding of the types of attitude and behaviour which lead to better' +	
'								team relationships and an improved patient experience&quot;' +
'							<br />' +
'							<input type="radio" id="betterUnderstandingAgree" name="betterUnderstanding" value="Agree" /><label for="betterUnderstandingAgree">Agree</label>' +
'					  	<br />' +
'							<input type="radio" id="betterUnderstandingDisagree" name="betterUnderstanding" value="Disagree" /><label for="betterUnderstandingDisagree">Disagree</label>' +
'						</p>' +
'						</li>	' +
'						<li>' +
'						<p>&hellip;I have a greater appreciation for the impact of my behaviour on those around me&quot;' +
'						<br /><input type="radio" id="impactAgree" name="impact" value="Agree" /><label for="impactAgree">Agree</label>' +
'					  <br />' +
'								<input type="radio" id="impactDisagree" name="impact" value="Disagree" /><label for="impactDisagree">Disagree</label>' +
'						</p>' +
'						</li>' +
'						<li>' +
'						<p>&hellip;I have a deeper understanding of other people&rsquo;s feelings and motivations&quot;' +
'						<br /><input type="radio" id="deeperUnderstandingAgree" name="deeperUnderstanding" value="Agree" /><label for="deeperUnderstandingAgree">Agree</label>' +
'					  <br />' +
'						<input type="radio" id="deeperUnderstandingDisagree" name="deeperUnderstanding" value="Disagree" /><label for="deeperUnderstandingDisagree">Disagree</label>' +
'					 </p>' +
'					</li>' +
'					<li>' +
'					<p>&hellip;I am more willing to recognise my limitations, and ask for help&quot;' +
'						<br /><input type="radio" id="recogniseLimitationsAgree" name="recogniseLimitations" value="Agree" /><label for="recogniseLimitationsAgree">Agree</label>' +
'					  <br />' +
'						<input type="radio" id="recogniseLimitationsDisagree" name="recogniseLimitations" value="Disagree" /><label for="recogniseLimitationsDisagree">Disagree</label>' +
'					  </p>' +
'				</li>' +
'				<li>' +
'					<p>&hellip;I am thinking of ways to change and improve my own attitude and behaviour&quot;' +
'				    <br /><input type="radio" id="improveAttitudeAgree" name="improveAttitude" value="Agree" /><label for="improveAttitudeAgree">Agree</label>' +
'					  <br />' +
'					  <input type="radio" id="improveAttitudeDisagree" name="improveAttitude" value="Disagree" /><label for="improveAttitudeDisagree">Disagree</label>' +
'					 </p>' +
'				</li>' +
'			</ol>' ;	

// Write question to page
		if (document.layers)  // if Netscape 4
		{
			document.questionFive.document.write(traineeUser);
			document.questionFive.document.close();
		}
		else
		{
			document.getElementById('questionFive').innerHTML =	traineeUser;
		} // end if
		
	} // end showTraineeUser