<?xml version="1.0" encoding="UTF-8"?>
<document>
 <LimeSurveyDocType>Survey</LimeSurveyDocType>
 <DBVersion>263</DBVersion>
 <languages>
  <language>en</language>
 </languages>
 <groups>
  <fields>
   <fieldname>gid</fieldname>
   <fieldname>sid</fieldname>
   <fieldname>group_name</fieldname>
   <fieldname>group_order</fieldname>
   <fieldname>description</fieldname>
   <fieldname>language</fieldname>
   <fieldname>randomization_group</fieldname>
   <fieldname>grelevance</fieldname>
  </fields>
  <rows>
   <row>
    <gid><![CDATA[903]]></gid>
    <sid><![CDATA[748898]]></sid>
    <group_name><![CDATA[G1]]></group_name>
    <group_order><![CDATA[0]]></group_order>
    <description><![CDATA[<script type='text/javascript'>
   $(document).ready(function() {
       var N_total = {NUMBEROFGROUPS};
       var N_current = $("#thisstep").val();
       $(".group-name").text("This is page " + N_current + " out of " + N_total);
	   $(".group-description-container").hide();
});
</script>]]></description>
    <language><![CDATA[en]]></language>
    <randomization_group/>
    <grelevance/>
   </row>
  </rows>
 </groups>
 <questions>
  <fields>
   <fieldname>qid</fieldname>
   <fieldname>parent_qid</fieldname>
   <fieldname>sid</fieldname>
   <fieldname>gid</fieldname>
   <fieldname>type</fieldname>
   <fieldname>title</fieldname>
   <fieldname>question</fieldname>
   <fieldname>preg</fieldname>
   <fieldname>help</fieldname>
   <fieldname>other</fieldname>
   <fieldname>mandatory</fieldname>
   <fieldname>question_order</fieldname>
   <fieldname>language</fieldname>
   <fieldname>scale_id</fieldname>
   <fieldname>same_default</fieldname>
   <fieldname>relevance</fieldname>
   <fieldname>modulename</fieldname>
  </fields>
  <rows>
   <row>
    <qid><![CDATA[10494]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[748898]]></sid>
    <gid><![CDATA[903]]></gid>
    <type><![CDATA[K]]></type>
    <title><![CDATA[Q1]]></title>
    <question><![CDATA[Q1...
<script type="text/javascript" charset="utf-8">	
	$(document).ready(function(){
		$('#question{QID}').sliderButtons({
			downText: 'Down', // Text for the "down" button
			upText: 'Up', // Text for the "up" button
			scrolling: true, // Continuous slider movement if left mouse button held down
			scrollInterval: 250, // Interval (in ms) between slider movement when button is held down
			valueSuffix: "%"	// Suffix for callout
		});
	});	
	
	// A custom plugin to add control buttons to LimeSurvey sliders
	// Author - Tony Partner - partnersurveys.com
	(function( $ ){
	
		$.fn.sliderButtons = function(options) {
		
			// The defaults, extended and modified with any passed in the function call
			var opts = $.extend( {
			downText: '-',		// Text for the "down" button
			upText: '+',		// Text for the "up" button
			scrolling: true,	// Continuous slider movement if left mouse button held down
			scrollInterval: 150,// Interval (in ms) between slider movement when button is held down
			valuePrefix: '',	// Prefix for callout
			valueSuffix: ''	// Suffix for callout
			}, options);
			
			return this.each(function(i) {
					
				var thisQuestion = $(this);
		
				// Add some classes
				$(thisQuestion).addClass('slider-button-question');		
				
				// Insert the buttons
				$('.question-item', thisQuestion).append('<div class="clearfix" />\
															<div class="slider-button-wrapper">\
																<button type="button" class="slider-button down btn btn-md  btn-primary">'+opts.downText+'</button>\
																<button type="button" class="slider-button up btn btn-md  btn-primary">'+opts.upText+'</button>\
															</div>');			
				// Initial button states
				function handleButtonState(slider) {
					var thisRow = $(slider).closest('.question-item');
					var thisSliderVal = $(slider).val();
					var thisSliderStep = $(slider).attr('data-slider-step');
					var thisSliderMin = $(slider).attr('data-slider-min');
					var thisSliderMax = $(slider).attr('data-slider-max');
					$('button.slider-button', thisRow).prop('disabled', false);
					if (thisSliderVal == thisSliderMin) {
						$('button.slider-button.down', thisRow).prop('disabled', true);
					}
					if (thisSliderVal == thisSliderMax) {
						$('button.slider-button.up', thisRow).prop('disabled', true);
					}
				}
				
				$('input:text.form-control', thisQuestion).each(function(i) {
					var thisInput = $(this);
					$(this).on('slideEnabled', function( event, ui ) {
						var thisRow = $(thisInput).closest('.question-item');
						handleButtonState(thisInput);
						if($('input.text', thisRow).val() != '') {
							$('.tooltip-inner', thisRow).text(opts.valuePrefix+$(thisInput).val()+opts.valueSuffix);
						}
				
						// Listener on sliders
						$(thisInput).on('slide slideStop', function( event, ui ) {
							handleButtonState(thisInput);
						});
					});
				});	
				
				// Function to handle button actions
				function handleButtons(thisButton) {
					var thisRow = $(thisButton).closest('.question-item');
					var thisSlider = $('input:text.form-control:eq(0)', thisRow);
					var thisSliderStep = $(thisSlider).attr('data-slider-step');
					var stepDecimals = 0;
					if(thisSliderStep.toString().indexOf('.') >= 0) {
						stepDecimals = thisSliderStep.toString().split('.')[1].length;
					}
					var thisSliderVal = Number($(thisSlider).val()).toFixed(stepDecimals);
					var thisSliderMin = $(thisSlider).attr('data-slider-min');
					var thisSliderMax = $(thisSlider).attr('data-slider-max');
					console.log(thisSliderVal+':'+thisSliderMax);
					if ($(thisButton).hasClass('down') && Number(thisSliderVal) > Number(thisSliderMin)) {
						$(thisSlider).bootstrapSlider('setValue', Number(thisSliderVal)-Number(thisSliderStep));
					}
					if ($(thisButton).hasClass('up') && Number(thisSliderVal) < Number(thisSliderMax)) {
						$(thisSlider).bootstrapSlider('setValue', Number(thisSliderVal)+Number(thisSliderStep));
					}
					var newValue = Number($(thisSlider).val()).toFixed(stepDecimals).replace(/\./, LSvar.sLEMradix);
					var hiddenInput = $('input.em_sq_validation:eq(0)', thisRow);
					$(hiddenInput).val(newValue).trigger('change');
					$('.tooltip-inner', thisRow).text(opts.valuePrefix+newValue+opts.valueSuffix);
				}
				
				// Scrolling
				if(opts.scrolling == true) {
						
					var sliderTimeout;
					var clicker = $('button.slider-button', thisQuestion);
					var count = 0;
	
					$('button.slider-button', thisQuestion).on('mousedown touchstart', function(){
						var thisButton = $(this);
						sliderTimeout = setInterval(function(){
							handleButtons(thisButton);
						}, opts.scrollInterval);				
						return false;
					});				
					
					$(document).on('mouseup touchend', function(){
						clearInterval(sliderTimeout);
						return false;
					});
					$('button.slider-button', thisQuestion).mouseout(function(){
						handleButtonState($(this).closest('.question-item').find('input:text.form-control'));
					});
				}
				
				// Listener on the buttons
				$('button.slider-button', thisQuestion).on('click touchend', function(e) {
					handleButtons(this)	;		
					handleButtonState($(this).closest('.question-item').find('input:text.form-control:eq(0)'));
				});
				
				// Listener on reset buttons
				$('.slider-reset', thisQuestion).on( "click", function( event, ui ) {
					var thisReset = $(this);
					setTimeout(function() {
						handleButtonState($(thisReset).closest('.question-item').find('input:text.form-control:eq(0)'));
					}, 150);
				});
			});
		};
	})( jQuery );
</script>

<style>
	.slider-button-question .slider-container {
		margin-bottom: 0;
	}
	
	.slider-button-question .slider-button-wrapper {
		margin: 0 0 0 25px;
		text-align: center;
	}
	
	.slider-button-question .slider-button-wrapper button {
		padding: 0 10px;
		margin: 0 0 0 5px;
	}
	
	.slider-button-question .slider-button-wrapper button:disabled {
		opacity:0.65;
		filter:alpha(opacity=65);
		cursor: default;
	}
	
	.slider-button-question .slider-reset {
		margin-top: 42px;
	}
</style>]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
  </rows>
 </questions>
 <subquestions>
  <fields>
   <fieldname>qid</fieldname>
   <fieldname>parent_qid</fieldname>
   <fieldname>sid</fieldname>
   <fieldname>gid</fieldname>
   <fieldname>type</fieldname>
   <fieldname>title</fieldname>
   <fieldname>question</fieldname>
   <fieldname>preg</fieldname>
   <fieldname>help</fieldname>
   <fieldname>other</fieldname>
   <fieldname>mandatory</fieldname>
   <fieldname>question_order</fieldname>
   <fieldname>language</fieldname>
   <fieldname>scale_id</fieldname>
   <fieldname>same_default</fieldname>
   <fieldname>relevance</fieldname>
   <fieldname>modulename</fieldname>
  </fields>
  <rows>
   <row>
    <qid><![CDATA[10495]]></qid>
    <parent_qid><![CDATA[10494]]></parent_qid>
    <sid><![CDATA[748898]]></sid>
    <gid><![CDATA[903]]></gid>
    <type><![CDATA[K]]></type>
    <title><![CDATA[SQ001]]></title>
    <question><![CDATA[Option 1|Left text|Right text]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[10497]]></qid>
    <parent_qid><![CDATA[10494]]></parent_qid>
    <sid><![CDATA[748898]]></sid>
    <gid><![CDATA[903]]></gid>
    <type><![CDATA[K]]></type>
    <title><![CDATA[SQ002]]></title>
    <question><![CDATA[Option 2|Left text|Right text]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[10498]]></qid>
    <parent_qid><![CDATA[10494]]></parent_qid>
    <sid><![CDATA[748898]]></sid>
    <gid><![CDATA[903]]></gid>
    <type><![CDATA[K]]></type>
    <title><![CDATA[SQ003]]></title>
    <question><![CDATA[Option 3|Left text|Right text]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[10499]]></qid>
    <parent_qid><![CDATA[10494]]></parent_qid>
    <sid><![CDATA[748898]]></sid>
    <gid><![CDATA[903]]></gid>
    <type><![CDATA[K]]></type>
    <title><![CDATA[SQ004]]></title>
    <question><![CDATA[Option 4|Left text|Right text]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
  </rows>
 </subquestions>
 <question_attributes>
  <fields>
   <fieldname>qid</fieldname>
   <fieldname>attribute</fieldname>
   <fieldname>value</fieldname>
   <fieldname>language</fieldname>
  </fields>
  <rows>
   <row>
    <qid><![CDATA[10494]]></qid>
    <attribute><![CDATA[slider_accuracy]]></attribute>
    <value><![CDATA[.1]]></value>
   </row>
   <row>
    <qid><![CDATA[10494]]></qid>
    <attribute><![CDATA[slider_layout]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
   <row>
    <qid><![CDATA[10494]]></qid>
    <attribute><![CDATA[slider_max]]></attribute>
    <value><![CDATA[100]]></value>
   </row>
   <row>
    <qid><![CDATA[10494]]></qid>
    <attribute><![CDATA[slider_min]]></attribute>
    <value><![CDATA[0]]></value>
   </row>
  </rows>
 </question_attributes>
 <surveys>
  <fields>
   <fieldname>sid</fieldname>
   <fieldname>admin</fieldname>
   <fieldname>expires</fieldname>
   <fieldname>startdate</fieldname>
   <fieldname>adminemail</fieldname>
   <fieldname>anonymized</fieldname>
   <fieldname>faxto</fieldname>
   <fieldname>format</fieldname>
   <fieldname>savetimings</fieldname>
   <fieldname>template</fieldname>
   <fieldname>language</fieldname>
   <fieldname>additional_languages</fieldname>
   <fieldname>datestamp</fieldname>
   <fieldname>usecookie</fieldname>
   <fieldname>allowregister</fieldname>
   <fieldname>allowsave</fieldname>
   <fieldname>autonumber_start</fieldname>
   <fieldname>autoredirect</fieldname>
   <fieldname>allowprev</fieldname>
   <fieldname>printanswers</fieldname>
   <fieldname>ipaddr</fieldname>
   <fieldname>refurl</fieldname>
   <fieldname>publicstatistics</fieldname>
   <fieldname>publicgraphs</fieldname>
   <fieldname>listpublic</fieldname>
   <fieldname>htmlemail</fieldname>
   <fieldname>sendconfirmation</fieldname>
   <fieldname>tokenanswerspersistence</fieldname>
   <fieldname>assessments</fieldname>
   <fieldname>usecaptcha</fieldname>
   <fieldname>usetokens</fieldname>
   <fieldname>bounce_email</fieldname>
   <fieldname>attributedescriptions</fieldname>
   <fieldname>emailresponseto</fieldname>
   <fieldname>emailnotificationto</fieldname>
   <fieldname>tokenlength</fieldname>
   <fieldname>showxquestions</fieldname>
   <fieldname>showgroupinfo</fieldname>
   <fieldname>shownoanswer</fieldname>
   <fieldname>showqnumcode</fieldname>
   <fieldname>bouncetime</fieldname>
   <fieldname>bounceprocessing</fieldname>
   <fieldname>bounceaccounttype</fieldname>
   <fieldname>bounceaccounthost</fieldname>
   <fieldname>bounceaccountpass</fieldname>
   <fieldname>bounceaccountencryption</fieldname>
   <fieldname>bounceaccountuser</fieldname>
   <fieldname>showwelcome</fieldname>
   <fieldname>showprogress</fieldname>
   <fieldname>questionindex</fieldname>
   <fieldname>navigationdelay</fieldname>
   <fieldname>nokeyboard</fieldname>
   <fieldname>alloweditaftercompletion</fieldname>
   <fieldname>googleanalyticsstyle</fieldname>
   <fieldname>googleanalyticsapikey</fieldname>
  </fields>
  <rows>
   <row>
    <sid><![CDATA[748898]]></sid>
    <admin><![CDATA[Administrator]]></admin>
    <adminemail><![CDATA[your-email@example.net]]></adminemail>
    <anonymized><![CDATA[N]]></anonymized>
    <faxto/>
    <format><![CDATA[G]]></format>
    <savetimings><![CDATA[N]]></savetimings>
    <template><![CDATA[default]]></template>
    <language><![CDATA[en]]></language>
    <additional_languages/>
    <datestamp><![CDATA[N]]></datestamp>
    <usecookie><![CDATA[N]]></usecookie>
    <allowregister><![CDATA[N]]></allowregister>
    <allowsave><![CDATA[Y]]></allowsave>
    <autonumber_start><![CDATA[24]]></autonumber_start>
    <autoredirect><![CDATA[N]]></autoredirect>
    <allowprev><![CDATA[Y]]></allowprev>
    <printanswers><![CDATA[Y]]></printanswers>
    <ipaddr><![CDATA[N]]></ipaddr>
    <refurl><![CDATA[N]]></refurl>
    <publicstatistics><![CDATA[N]]></publicstatistics>
    <publicgraphs><![CDATA[N]]></publicgraphs>
    <listpublic><![CDATA[N]]></listpublic>
    <htmlemail><![CDATA[Y]]></htmlemail>
    <sendconfirmation><![CDATA[N]]></sendconfirmation>
    <tokenanswerspersistence><![CDATA[N]]></tokenanswerspersistence>
    <assessments><![CDATA[Y]]></assessments>
    <usecaptcha><![CDATA[N]]></usecaptcha>
    <usetokens><![CDATA[N]]></usetokens>
    <bounce_email><![CDATA[your-email@example.net]]></bounce_email>
    <attributedescriptions><![CDATA[{"attribute_1":{"description":"Attribute 1","mandatory":"N","show_register":"N","cpdbmap":""}}]]></attributedescriptions>
    <emailresponseto/>
    <emailnotificationto/>
    <tokenlength><![CDATA[15]]></tokenlength>
    <showxquestions><![CDATA[N]]></showxquestions>
    <showgroupinfo><![CDATA[X]]></showgroupinfo>
    <shownoanswer><![CDATA[N]]></shownoanswer>
    <showqnumcode><![CDATA[X]]></showqnumcode>
    <bounceprocessing><![CDATA[N]]></bounceprocessing>
    <showwelcome><![CDATA[N]]></showwelcome>
    <showprogress><![CDATA[Y]]></showprogress>
    <questionindex><![CDATA[2]]></questionindex>
    <navigationdelay><![CDATA[0]]></navigationdelay>
    <nokeyboard><![CDATA[N]]></nokeyboard>
    <alloweditaftercompletion><![CDATA[N]]></alloweditaftercompletion>
    <googleanalyticsstyle><![CDATA[0]]></googleanalyticsstyle>
    <googleanalyticsapikey/>
   </row>
  </rows>
 </surveys>
 <surveys_languagesettings>
  <fields>
   <fieldname>surveyls_survey_id</fieldname>
   <fieldname>surveyls_language</fieldname>
   <fieldname>surveyls_title</fieldname>
   <fieldname>surveyls_description</fieldname>
   <fieldname>surveyls_welcometext</fieldname>
   <fieldname>surveyls_endtext</fieldname>
   <fieldname>surveyls_url</fieldname>
   <fieldname>surveyls_urldescription</fieldname>
   <fieldname>surveyls_email_invite_subj</fieldname>
   <fieldname>surveyls_email_invite</fieldname>
   <fieldname>surveyls_email_remind_subj</fieldname>
   <fieldname>surveyls_email_remind</fieldname>
   <fieldname>surveyls_email_register_subj</fieldname>
   <fieldname>surveyls_email_register</fieldname>
   <fieldname>surveyls_email_confirm_subj</fieldname>
   <fieldname>surveyls_email_confirm</fieldname>
   <fieldname>surveyls_dateformat</fieldname>
   <fieldname>surveyls_attributecaptions</fieldname>
   <fieldname>email_admin_notification_subj</fieldname>
   <fieldname>email_admin_notification</fieldname>
   <fieldname>email_admin_responses_subj</fieldname>
   <fieldname>email_admin_responses</fieldname>
   <fieldname>surveyls_numberformat</fieldname>
   <fieldname>attachments</fieldname>
  </fields>
  <rows>
   <row>
    <surveyls_survey_id><![CDATA[748898]]></surveyls_survey_id>
    <surveyls_language><![CDATA[en]]></surveyls_language>
    <surveyls_title><![CDATA[Test 5]]></surveyls_title>
    <surveyls_description/>
    <surveyls_welcometext><![CDATA[A welcome message...]]></surveyls_welcometext>
    <surveyls_endtext/>
    <surveyls_url/>
    <surveyls_urldescription/>
    <surveyls_email_invite_subj><![CDATA[Invitation to participate in a survey]]></surveyls_email_invite_subj>
    <surveyls_email_invite><![CDATA[Dear {FIRSTNAME},<br />
<br />
you have been invited to participate in a survey.<br />
<br />
The survey is titled:<br />
"{SURVEYNAME}"<br />
<br />
"{SURVEYDESCRIPTION}"<br />
<br />
To participate, please click on the link below.<br />
<br />
Sincerely,<br />
<br />
{ADMINNAME} ({ADMINEMAIL})<br />
<br />
----------------------------------------------<br />
Click here to do the survey:<br />
{SURVEYURL}<br />
<br />
If you do not want to participate in this survey and don't want to receive any more invitations please click the following link:<br />
{OPTOUTURL}<br />
<br />
If you are blacklisted but want to participate in this survey and want to receive invitations please click the following link:<br />
{OPTINURL}]]></surveyls_email_invite>
    <surveyls_email_remind_subj><![CDATA[Reminder to participate in a survey]]></surveyls_email_remind_subj>
    <surveyls_email_remind><![CDATA[Dear {FIRSTNAME},<br />
<br />
Recently we invited you to participate in a survey.<br />
<br />
We note that you have not yet completed the survey, and wish to remind you that the survey is still available should you wish to take part.<br />
<br />
The survey is titled:<br />
"{SURVEYNAME}"<br />
<br />
"{SURVEYDESCRIPTION}"<br />
<br />
To participate, please click on the link below.<br />
<br />
Sincerely,<br />
<br />
{ADMINNAME} ({ADMINEMAIL})<br />
<br />
----------------------------------------------<br />
Click here to do the survey:<br />
{SURVEYURL}<br />
<br />
If you do not want to participate in this survey and don't want to receive any more invitations please click the following link:<br />
{OPTOUTURL}]]></surveyls_email_remind>
    <surveyls_email_register_subj><![CDATA[Survey registration confirmation]]></surveyls_email_register_subj>
    <surveyls_email_register><![CDATA[Dear {FIRSTNAME},<br />
<br />
You, or someone using your email address, have registered to participate in an online survey titled {SURVEYNAME}.<br />
<br />
To complete this survey, click on the following URL:<br />
<br />
{SURVEYURL}<br />
<br />
If you have any questions about this survey, or if you did not register to participate and believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.]]></surveyls_email_register>
    <surveyls_email_confirm_subj><![CDATA[Confirmation of your participation in our survey]]></surveyls_email_confirm_subj>
    <surveyls_email_confirm><![CDATA[Dear {FIRSTNAME},<br />
<br />
this email is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. Thank you for participating.<br />
<br />
If you have any further questions about this email, please contact {ADMINNAME} on {ADMINEMAIL}.<br />
<br />
Sincerely,<br />
<br />
{ADMINNAME}]]></surveyls_email_confirm>
    <surveyls_dateformat><![CDATA[2]]></surveyls_dateformat>
    <surveyls_attributecaptions><![CDATA[{"attribute_1":""}]]></surveyls_attributecaptions>
    <email_admin_notification_subj><![CDATA[Response submission for survey {SURVEYNAME}]]></email_admin_notification_subj>
    <email_admin_notification><![CDATA[Hello,<br />
<br />
A new response was submitted for your survey '{SURVEYNAME}'.<br />
<br />
Click the following link to reload the survey:<br />
{RELOADURL}<br />
<br />
Click the following link to see the individual response:<br />
{VIEWRESPONSEURL}<br />
<br />
Click the following link to edit the individual response:<br />
{EDITRESPONSEURL}<br />
<br />
View statistics by clicking here:<br />
{STATISTICSURL}]]></email_admin_notification>
    <email_admin_responses_subj><![CDATA[Response submission for survey {SURVEYNAME} with results]]></email_admin_responses_subj>
    <email_admin_responses><![CDATA[Hello,<br />
<br />
A new response was submitted for your survey '{SURVEYNAME}'.<br />
<br />
Click the following link to reload the survey:<br />
{RELOADURL}<br />
<br />
Click the following link to see the individual response:<br />
{VIEWRESPONSEURL}<br />
<br />
Click the following link to edit the individual response:<br />
{EDITRESPONSEURL}<br />
<br />
View statistics by clicking here:<br />
{STATISTICSURL}<br />
<br />
<br />
The following answers were given by the participant:<br />
{ANSWERTABLE}]]></email_admin_responses>
    <surveyls_numberformat><![CDATA[0]]></surveyls_numberformat>
   </row>
  </rows>
 </surveys_languagesettings>
</document>
