https://www.verintefm.vovici.net/se/29BB97FF0B6D827508DCE7F28F18C1A878

Submitted URL:
https://www.verintefm.vovici.net/se/29BB97FF0B6D827508DCE7F28F18C1A878
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 64 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

Console log messages · 1 found

Messages logged to the web console

HTML

The raw HTML body of the page

<!DOCTYPE html><!--[if lt IE 8]><html class="ie7 vt-adaptive vt-lang-ltr" lang="en-US" dir="ltr"><![endif]--><!--[if IE 8]><html class="ie8 vt-adaptive vt-lang-ltr" lang="en-US" dir="ltr"><![endif]--><!--[if IE 9]><html class="modern ie9 vt-adaptive vt-lang-ltr" lang="en-US" dir="ltr"><![endif]--><!--[if (gt IE 9)|!(IE)]><!--><html class="modern vt-adaptive vt-lang-ltr k-webkit k-webkit119 js" lang="en-US" dir="ltr"><!--<![endif]--><head>
	<title>
		EMEA UK, Nordics, South Africa and Middle East Customer Experience Key Metrics Survey
	</title><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><noscript>
		<style>
			html { display: none; }
		</style><meta http-equiv="refresh" content="0; url=/se/29BB97FF0B6D827508DCE7F28F18C1A878/nojs/" />
	</noscript><style>
		html.js .nojs { display: none; }
	</style><link rel="stylesheet" type="text/css" href="/static/bootstrap.min.css?0000234A"><link rel="stylesheet" type="text/css" href="/static/kendo/css/kendo.common.min.css?0000234A"><link rel="stylesheet" type="text/css" href="/static/kendo/css/kendo.bootstrap.min.css?0000234A"><!--[if (gt IE 7)|!(IE)]><!--><link rel="stylesheet" type="text/css" href="/static/structure.css?3F37030F"><!--<![endif]--><!--[if lt IE 8]><link rel="stylesheet" type="text/css" href="/static/IE7.css?0000234A" /><![endif]--><link rel="stylesheet" type="text/css" href="/surveys/700159999/b6d8275/theme.css?3F37030F00000969"><script src="/static/jquery.min.js?0000234A">

	</script><script src="/static/bootstrap.min.js?0000234A">

	</script><script src="/static/jquery.placeholder.js?0000234A">

	</script><script src="/static/support.js?0000234A">

	</script><script>
		var currentCulture = 'en-US';VerintAPI.Labels.pleaseSpecify = 'Please specify';$(document).ready(function() {
		allowRadioButtonsUncheck();
		});

	</script><script src="/static/kendo/js/kendo.all.min.js?0000234A">

	</script><script>
		!function(e,define){define([],e)}(function(){return function(e){var t=e.kendo||(e.kendo={cultures:{}});t.cultures["en-US"]={name:"en-US",numberFormat:{pattern:["-n"],decimals:2,",":",",".":".",groupSize:[3],percent:{pattern:["-n %","n %"],decimals:2,",":",",".":".",groupSize:[3],symbol:"%"},currency:{pattern:["($n)","$n"],decimals:2,",":",",".":".",groupSize:[3],symbol:"$"}},calendars:{standard:{days:{names:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],namesAbbr:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],namesShort:["Su","Mo","Tu","We","Th","Fr","Sa"]},months:{names:["January","February","March","April","May","June","July","August","September","October","November","December",""],namesAbbr:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""]},AM:["AM","am","AM"],PM:["PM","pm","PM"],patterns:{d:"MM/dd/yyyy",D:"dddd, MMMM dd, yyyy",F:"dddd, MMMM dd, yyyy h:mm:ss tt",g:"M/d/yyyy h:mm tt",G:"M/d/yyyy h:mm:ss tt",m:"MMMM dd",M:"MMMM dd",s:"yyyy'-'MM'-'dd'T'HH':'mm':'ss",t:"h:mm tt",T:"h:mm:ss tt",u:"yyyy'-'MM'-'dd HH':'mm':'ss'Z'",y:"MMMM, yyyy",Y:"MMMM, yyyy"},"/":"/",":":":",firstDay:0}}}}(this),window.kendo},"function"==typeof define&&define.amd?define:function(e,t){t()});
	</script><!--[if lt IE 9]><script src="/static/html5shiv.min.js?0000234A">

	</script><script src="/static/respond.min.js?0000234A">

	</script><![endif]--><script>
		function ProcessPage() {if (!(document.command && (document.command == "next" || document.command == "submit"))) return true;if (!ValidateQuestions()) return false;return true;}function ValidateQuestions() {questionValidationUtils.NotAnsweredQuestions = [];questionValidationUtils.resetValidation();if (questionValidationUtils.getChooseOneValue('Q245') == 0) {
questionValidationUtils.showValidationMessage('Q245', 'Q245ReqAns');
}
if (questionValidationUtils.getChooseOneValue('Q4') == 0) {
questionValidationUtils.showValidationMessage('Q4', 'Q4ReqAns');
}
if (questionValidationUtils.getChooseOneValue('Q7') == 0) {
questionValidationUtils.showValidationMessage('Q7', 'Q7ReqAns');
}
if (questionValidationUtils.getChooseOneValue('Q140') == 0) {
questionValidationUtils.showValidationMessage('Q140', 'Q140ReqAns');
}
if (questionValidationUtils.getChooseOneValue('Q5') == 0) {
questionValidationUtils.showValidationMessage('Q5', 'Q5ReqAns');
}
return !questionValidationUtils.gotoFirstError();}function validateCharacters(e, id, charactersToExclude) { var keyCode = e.keyCode || e.which; var charactersArray = charactersToExclude.split(""); var input = document.getElementById(id.id).value.toUpperCase(); var inputArray = input.split(""); questionValidationUtils.NotAnsweredQuestions = []; var isValid = inputArray.every(function(val) { return charactersArray.indexOf(val) >= 0; }); if (!isValid) { questionValidationUtils.showValidationMessage(id.id, id.id+'ValidCharacters', input.toUpperCase()); } else { questionValidationUtils.resetValidation(); } return isValid; }function identifyNumericInputError(e, id, isRealNumber) { var keyCode = e.keyCode || e.which; var input = document.getElementById(id.id); var letters = /^[A-Za-z]+$/; var letternumber = /^[0-9a-zA-Z]+$/; var numbers = /^[0-9]+$/; questionValidationUtils.NotAnsweredQuestions = []; if(input.value.match(numbers)) { questionValidationUtils.resetValidation(); return true; } if(input.value.match(letters) || input.value.match(letternumber)) { if (isRealNumber == false) { questionValidationUtils.showValidationMessage(id.id, id.id+'WholeNumber'); } else { questionValidationUtils.showValidationMessage(id.id, id.id+'RealNumber'); } return false; } else { questionValidationUtils.resetValidation(); return true; } }
	</script><script>
		$(window).load(function(){{ $(':checkbox, :radio, select').change(conditionalQuestions); setTimeout(function(){ conditionalQuestions(); }, 10)}});function conditionalQuestions(){if (visibilityUtils.getChooseOneValue("Q4") >= 6 || visibilityUtils.getChooseOneValue("Q4") == 7) {visibilityUtils.showQuestion("Q139");} else {visibilityUtils.hideQuestion("Q139");}if (visibilityUtils.getChooseOneValue("Q4") == 5 || visibilityUtils.getChooseOneValue("Q4") == 4 || visibilityUtils.getChooseOneValue("Q4") == 3 || visibilityUtils.getChooseOneValue("Q4") == 2 || visibilityUtils.getChooseOneValue("Q4") == 1) {visibilityUtils.showQuestion("Q132");} else {visibilityUtils.hideQuestion("Q132");}if (visibilityUtils.getChooseOneValue("Q7") == 3 || visibilityUtils.getChooseOneValue("Q7") == 4) {visibilityUtils.showQuestion("Q137");} else {visibilityUtils.hideQuestion("Q137");}if (visibilityUtils.getChooseOneValue("Q7") == 2 || visibilityUtils.getChooseOneValue("Q7") == 1) {visibilityUtils.showQuestion("Q138");} else {visibilityUtils.hideQuestion("Q138");}}
	</script>
</head><body id="P1" role="document" class=""><form class="form-horizontal" role="form" action="/se/29BB97FF0B6D827508DCE7F28F18C1A878" method="post" enctype="multipart/form-data" onsubmit="return ProcessPage();" novalidate="">
	<script>
		document.documentElement.className += " js";
	</script><div class="container-fluid page-content page-bg-image page-bg-color theme theme-framed">
	<div class="row">
		<div class="col-md-10 col-md-offset-1">
			<div class="logo"></div>
		</div>
	</div>
	<div class="row">
		<div class="col-md-10 col-md-offset-1">
			<!--Q245_START-->
	<fieldset id="Q245_WRAPPER" class="question chooseone buttonscale">
		<legend id="Q245_LEGEND" class="sr-only">

		</legend><span id="Q245_QUESTION_TEXT"><a id="Q245_HEADING" class="question-heading anchor"></a><span class="question-text"><span style="font-size: 10.5pt;"><span face="Arial" style="font-family: Arial;"><strong><br>Overall, how satisfied are you with Verint?</strong></span></span></span></span><div class="response-area mobile-vertical-layout" role="radiogroup" aria-labelledby="Q245_QUESTION_TEXT">
			<ol class="response-set">
				<li id="Q245C1" class="response select-area"><input type="radio" name="Q245" value="1" id="Q245_1" role="radio" aria-checked="false"><label for="Q245_1" class="btn btn-default button-text" title="1 = Extremely dissatisfied"><span style="font-size: 10.5pt; font-family: Arial;">1 = Extremely dissatisfied</span></label></li><li id="Q245C2" class="response select-area"><input type="radio" name="Q245" value="2" id="Q245_2" role="radio" aria-checked="false"><label for="Q245_2" class="btn btn-default button-text" title="2"><span style="font-size: 10.5pt; font-family: Arial;">2</span></label></li><li id="Q245C3" class="response select-area"><input type="radio" name="Q245" value="3" id="Q245_3" role="radio" aria-checked="false"><label for="Q245_3" class="btn btn-default button-text" title="3"><span style="font-size: 10.5pt; font-family: Arial;">3</span></label></li><li id="Q245C4" class="response select-area"><input type="radio" name="Q245" value="4" id="Q245_4" role="radio" aria-checked="false"><label for="Q245_4" class="btn btn-default button-text" title="4"><span style="font-size: 14px; font-family: Arial;">4 </span></label></li><li id="Q245C5" class="response select-area"><input type="radio" name="Q245" value="5" id="Q245_5" role="radio" aria-checked="false"><label for="Q245_5" class="btn btn-default button-text" title="5"><span face="Arial" style="font-size: 14px; font-family: Arial;">5</span></label></li><li id="Q245C6" class="response select-area"><input type="radio" name="Q245" value="6" id="Q245_6" role="radio" aria-checked="false"><label for="Q245_6" class="btn btn-default button-text" title="6"><span face="Arial" style="font-family: Arial;">6</span></label></li><li id="Q245C7" class="response select-area"><input type="radio" name="Q245" value="7" id="Q245_7" role="radio" aria-checked="false"><label for="Q245_7" class="btn btn-default button-text" title="7 = Extremely satisfied"><span face="Arial" font-size="14px" style="font-size: 14px; font-family: Arial;">7 = Extremely satisfied</span></label></li>
			</ol>
		</div><script>
			renderButtonScaleQuestion('Q245', '-1')

		</script><div id="Q245ReqAns" tabindex="0" class="alert alert-danger validation-message" role="alert" style="display:none;">
			Please answer the question above before continuing.
		</div>
	</fieldset><!--Q245_END-->
	<!--Q4_START-->
	<fieldset id="Q4_WRAPPER" class="question chooseone buttonscale">
		<legend id="Q4_LEGEND" class="sr-only">

		</legend><span id="Q4_QUESTION_TEXT"><a id="Q4_HEADING" class="question-heading anchor"></a><span class="question-text"><span face="Arial" font-size="14px" style="font-size: 14px; font-family: Arial;"><strong>Overall, how difficult or easy is it to do business with Verint?&nbsp;</strong></span></span></span><div class="response-area mobile-vertical-layout" role="radiogroup" aria-labelledby="Q4_QUESTION_TEXT">
			<ol class="response-set">
				<li id="Q4C1" class="response select-area"><input type="radio" name="Q4" value="1" id="Q4_1" role="radio" aria-checked="false"><label for="Q4_1" class="btn btn-default button-text" title="1 = Extremely difficult"><span style="font-size: 10.5pt; font-family: Arial;">1 = Extremely difficult</span></label></li><li id="Q4C2" class="response select-area"><input type="radio" name="Q4" value="2" id="Q4_2" role="radio" aria-checked="false"><label for="Q4_2" class="btn btn-default button-text" title="2"><span style="font-size: 10.5pt; font-family: Arial;">2</span></label></li><li id="Q4C3" class="response select-area"><input type="radio" name="Q4" value="3" id="Q4_3" role="radio" aria-checked="false"><label for="Q4_3" class="btn btn-default button-text" title="3"><span style="font-size: 10.5pt; font-family: Arial;">3</span></label></li><li id="Q4C4" class="response select-area"><input type="radio" name="Q4" value="4" id="Q4_4" role="radio" aria-checked="false"><label for="Q4_4" class="btn btn-default button-text" title="4"><span style="font-size: 10.5pt; font-family: Arial;">4</span></label></li><li id="Q4C5" class="response select-area"><input type="radio" name="Q4" value="5" id="Q4_5" role="radio" aria-checked="false"><label for="Q4_5" class="btn btn-default button-text" title="5"><span style="font-size: 10.5pt; font-family: Arial;">5 </span></label></li><li id="Q4C6" class="response select-area"><input type="radio" name="Q4" value="6" id="Q4_6" role="radio" aria-checked="false"><label for="Q4_6" class="btn btn-default button-text" title="6"><span style="font-size: 10.5pt; font-family: Arial;">6</span></label></li><li id="Q4C7" class="response select-area"><input type="radio" name="Q4" value="7" id="Q4_7" role="radio" aria-checked="false"><label for="Q4_7" class="btn btn-default button-text" title="7 = Extremely easy"><span style="font-size: 10.5pt; font-family: Arial;">7 = Extremely easy</span></label></li>
			</ol>
		</div><script>
			renderButtonScaleQuestion('Q4', '-1')

		</script><div id="Q4ReqAns" tabindex="0" class="alert alert-danger validation-message" role="alert" style="display:none;">
			Please answer the question above before continuing.
		</div>
	</fieldset><!--Q4_END-->
	<!--Q139_START-->
	<fieldset id="Q139_WRAPPER" class="question shortanswer" style="display:none;">
		<legend id="Q139_LEGEND" class="sr-only">

		</legend><span id="Q139_QUESTION_TEXT"><a id="Q139_HEADING" class="question-heading anchor"></a><label for="Q139_1" class="question-text"><span face="Arial" font-size="14px" style="font-size: 14px; font-family: Arial;"><b>Will you share an example of how it is easy to do business with us?</b></span></label></span><div class="response-set" aria-labelledby="Q139_QUESTION_TEXT" role="grid">
			<div class="field-wrapper">
				<input type="text" class="form-control" name="Q139_1" id="Q139_1" maxlength="255" role="textbox" aria-multiline="false">
			</div>
		</div>
	</fieldset><!--Q139_END-->
	<!--Q132_START-->
	<fieldset id="Q132_WRAPPER" class="question shortanswer" style="display:none;">
		<legend id="Q132_LEGEND" class="sr-only">

		</legend><span id="Q132_QUESTION_TEXT"><a id="Q132_HEADING" class="question-heading anchor"></a><label for="Q132_1" class="question-text"><font face="Arial" style="font-size: 14px;"><b>What, if anything, could we change to make it easier to do business with us?</b></font></label></span><div class="response-set" aria-labelledby="Q132_QUESTION_TEXT" role="grid">
			<div class="field-wrapper">
				<input type="text" class="form-control" name="Q132_1" id="Q132_1" maxlength="255" role="textbox" aria-multiline="false">
			</div>
		</div>
	</fieldset><!--Q132_END-->
	<!--Q7_START-->
	<fieldset id="Q7_WRAPPER" class="question chooseone list">
		<legend id="Q7_LEGEND" class="sr-only">

		</legend><span id="Q7_QUESTION_TEXT"><a id="Q7_HEADING" class="question-heading anchor"></a><span class="question-text"><span face="Arial" style="font-family: Arial;"><span font-size="10.5pt" style="font-size: 10.5pt;"><strong>How much improvement in your business operations, if any, has your company achieved by using Verint products?</strong></span></span></span></span><div class="response-area" role="radiogroup" aria-labelledby="Q7_QUESTION_TEXT">
			<ol class="response-set">
				<li id="Q7C1" class="response select-area"><input type="radio" name="Q7" value="1" id="Q7_1" role="radio" aria-checked="false"><label for="Q7_1" class="choice-text"><font face="Arial" style="font-size: 14px;"><span style="font-size: 10.5pt;">1 = No improvement</span></font></label></li><li id="Q7C2" class="response select-area"><input type="radio" name="Q7" value="2" id="Q7_2" role="radio" aria-checked="false"><label for="Q7_2" class="choice-text"><font face="Arial" style="font-size: 14px;"><span style="font-size: 10.5pt;">2 = Slight improvement</span></font></label></li><li id="Q7C3" class="response select-area"><input type="radio" name="Q7" value="3" id="Q7_3" role="radio" aria-checked="false"><label for="Q7_3" class="choice-text"><font face="Arial" style="font-size: 14px;"><span style="font-size: 10.5pt;">3 = Moderate improvement</span></font></label></li><li id="Q7C4" class="response select-area"><input type="radio" name="Q7" value="4" id="Q7_4" role="radio" aria-checked="false"><label for="Q7_4" class="choice-text"><font face="Arial" style="font-size: 14px;"><span style="font-size: 10.5pt;">4 = Significant improvement</span></font></label></li><li id="Q7C5" class="response select-area"><input type="radio" name="Q7" value="5" id="Q7_5" role="radio" aria-checked="false"><label for="Q7_5" class="choice-text"><font face="Arial" style="font-size: 14px;"><font style="font-size: 14px;">Unknown/not related to my role</font></font></label></li>
			</ol>
		</div><div id="Q7ReqAns" tabindex="0" class="alert alert-danger validation-message" role="alert" style="display:none;">
			Please answer the question above before continuing.
		</div>
	</fieldset><!--Q7_END-->
	<!--Q137_START-->
	<fieldset id="Q137_WRAPPER" class="question shortanswer" style="display:none;">
		<legend id="Q137_LEGEND" class="sr-only">

		</legend><span id="Q137_QUESTION_TEXT"><a id="Q137_HEADING" class="question-heading anchor"></a><label for="Q137_1" class="question-text"><font face="Arial" style="font-size: 14px;"><b>In what ways have your Verint products helped improve your business operations?&nbsp;</b></font></label></span><div class="response-set" aria-labelledby="Q137_QUESTION_TEXT" role="grid">
			<div class="field-wrapper">
				<input type="text" class="form-control" name="Q137_1" id="Q137_1" maxlength="255" role="textbox" aria-multiline="false">
			</div>
		</div>
	</fieldset><!--Q137_END-->
	<!--Q138_START-->
	<fieldset id="Q138_WRAPPER" class="question shortanswer" style="display:none;">
		<legend id="Q138_LEGEND" class="sr-only">

		</legend><span id="Q138_QUESTION_TEXT"><a id="Q138_HEADING" class="question-heading anchor"></a><label for="Q138_1" class="question-text"><font face="Arial" style="font-size: 14px;"><b>In what ways did we not meet your expectations for operational improvement?</b></font></label></span><div class="response-set" aria-labelledby="Q138_QUESTION_TEXT" role="grid">
			<div class="field-wrapper">
				<input type="text" class="form-control" name="Q138_1" id="Q138_1" maxlength="255" role="textbox" aria-multiline="false">
			</div>
		</div>
	</fieldset><!--Q138_END-->
	<!--Q140_START-->
	<fieldset id="Q140_WRAPPER" class="question chooseone buttonscale">
		<legend id="Q140_LEGEND" class="sr-only">

		</legend><span id="Q140_QUESTION_TEXT"><a id="Q140_HEADING" class="question-heading anchor"></a><span class="question-text"><span face="Arial" style="font-family: Arial;"><strong><span style="font-size: 10.5pt;">On a scale of 0 to 10, how likely are you to&nbsp;</span><span style="font-size: 10.5pt; text-decoration: underline;">recommend</span><span style="font-size: 10.5pt;"> Verint to a friend or colleague?</span></strong></span></span></span><div class="response-area mobile-vertical-layout" role="radiogroup" aria-labelledby="Q140_QUESTION_TEXT">
			<ol class="response-set">
				<li id="Q140C1" class="response select-area"><input type="radio" name="Q140" value="1" id="Q140_1" role="radio" aria-checked="false"><label for="Q140_1" class="btn btn-default button-text" title="0 - Extremely unlikely"><span font-size="10.5pt" style="font-size: 10.5pt;"><span face="Arial" style="font-family: Arial;">0 - Extremely unlikely</span></span></label></li><li id="Q140C2" class="response select-area"><input type="radio" name="Q140" value="2" id="Q140_2" role="radio" aria-checked="false"><label for="Q140_2" class="btn btn-default button-text" title="1"><span style="font-size: 10.5pt;"><font face="Arial">1</font></span></label></li><li id="Q140C3" class="response select-area"><input type="radio" name="Q140" value="3" id="Q140_3" role="radio" aria-checked="false"><label for="Q140_3" class="btn btn-default button-text" title="2"><span style="font-size: 10.5pt;"><font face="Arial">2</font></span></label></li><li id="Q140C4" class="response select-area"><input type="radio" name="Q140" value="4" id="Q140_4" role="radio" aria-checked="false"><label for="Q140_4" class="btn btn-default button-text" title="3"><span style="font-size: 10.5pt;"><font face="Arial">3</font></span></label></li><li id="Q140C5" class="response select-area"><input type="radio" name="Q140" value="5" id="Q140_5" role="radio" aria-checked="false"><label for="Q140_5" class="btn btn-default button-text" title="4"><span style="font-size: 10.5pt;"><font face="Arial">4</font></span></label></li><li id="Q140C6" class="response select-area"><input type="radio" name="Q140" value="6" id="Q140_6" role="radio" aria-checked="false"><label for="Q140_6" class="btn btn-default button-text" title="5"><font face="Arial" style="font-size: 14px;">5</font></label></li><li id="Q140C7" class="response select-area"><input type="radio" name="Q140" value="7" id="Q140_7" role="radio" aria-checked="false"><label for="Q140_7" class="btn btn-default button-text" title="6"><font face="Arial" style="font-size: 14px;">6</font></label></li><li id="Q140C8" class="response select-area"><input type="radio" name="Q140" value="8" id="Q140_8" role="radio" aria-checked="false"><label for="Q140_8" class="btn btn-default button-text" title="7"><font face="Arial" style="font-size: 14px;">7</font></label></li><li id="Q140C9" class="response select-area"><input type="radio" name="Q140" value="9" id="Q140_9" role="radio" aria-checked="false"><label for="Q140_9" class="btn btn-default button-text" title="8"><font face="Arial" style="font-size: 14px;">8</font></label></li><li id="Q140C10" class="response select-area"><input type="radio" name="Q140" value="10" id="Q140_10" role="radio" aria-checked="false"><label for="Q140_10" class="btn btn-default button-text" title="9"><font face="Arial" style="font-size: 14px;">9</font></label></li><li id="Q140C11" class="response select-area"><input type="radio" name="Q140" value="11" id="Q140_11" role="radio" aria-checked="false"><label for="Q140_11" class="btn btn-default button-text" title="10 - Extremely likely"><font face="Arial" style="font-size: 14px;">10 - Extremely likely</font></label></li>
			</ol>
		</div><script>
			renderButtonScaleQuestion('Q140', '-1')

		</script><div id="Q140ReqAns" tabindex="0" class="alert alert-danger validation-message" role="alert" style="display:none;">
			Please answer the question above before continuing.
		</div>
	</fieldset><!--Q140_END-->
	<!--Q5_START-->
	<fieldset id="Q5_WRAPPER" class="question chooseone buttonscale">
		<legend id="Q5_LEGEND" class="sr-only">

		</legend><span id="Q5_QUESTION_TEXT"><a id="Q5_HEADING" class="question-heading anchor"></a><span class="question-text"><span face="Arial" style="font-family: Arial;"><strong><span style="font-size: 10.5pt;">How likely are you to </span><span style="font-size: 10.5pt; text-decoration: underline;">repurchase</span><span style="font-size: 10.5pt;"> from Verint or recommend that your organization repurchase from Verint?</span></strong></span></span></span><div class="response-area mobile-vertical-layout" role="radiogroup" aria-labelledby="Q5_QUESTION_TEXT">
			<ol class="response-set">
				<li id="Q5C1" class="response select-area"><input type="radio" name="Q5" value="1" id="Q5_1" role="radio" aria-checked="false"><label for="Q5_1" class="btn btn-default button-text" title="0 - Extremely unlikely"><span style="font-size: 10.5pt;"><span face="Arial" style="font-family: Arial;">0 - Extremely unlikely</span></span></label></li><li id="Q5C2" class="response select-area"><input type="radio" name="Q5" value="2" id="Q5_2" role="radio" aria-checked="false"><label for="Q5_2" class="btn btn-default button-text" title="1"><span style="font-size: 10.5pt;"><span face="Arial" style="font-family: Arial;">1</span></span></label></li><li id="Q5C3" class="response select-area"><input type="radio" name="Q5" value="3" id="Q5_3" role="radio" aria-checked="false"><label for="Q5_3" class="btn btn-default button-text" title="2"><span style="font-size: 10.5pt;"><span face="Arial" style="font-family: Arial;">2</span></span></label></li><li id="Q5C4" class="response select-area"><input type="radio" name="Q5" value="4" id="Q5_4" role="radio" aria-checked="false"><label for="Q5_4" class="btn btn-default button-text" title="3"><span style="font-size: 10.5pt;"><span face="Arial" style="font-family: Arial;">3</span></span></label></li><li id="Q5C5" class="response select-area"><input type="radio" name="Q5" value="5" id="Q5_5" role="radio" aria-checked="false"><label for="Q5_5" class="btn btn-default button-text" title="4"><span style="font-size: 10.5pt;"><span face="Arial" style="font-family: Arial;">4</span></span></label></li><li id="Q5C6" class="response select-area"><input type="radio" name="Q5" value="6" id="Q5_6" role="radio" aria-checked="false"><label for="Q5_6" class="btn btn-default button-text" title="5"><span style="font-size: 10.5pt;"><span face="Arial" style="font-family: Arial;">5</span></span></label></li><li id="Q5C7" class="response select-area"><input type="radio" name="Q5" value="7" id="Q5_7" role="radio" aria-checked="false"><label for="Q5_7" class="btn btn-default button-text" title="6"><span style="font-size: 10.5pt;"><span face="Arial" style="font-family: Arial;">6</span></span></label></li><li id="Q5C8" class="response select-area"><input type="radio" name="Q5" value="8" id="Q5_8" role="radio" aria-checked="false"><label for="Q5_8" class="btn btn-default button-text" title="7"><span style="font-size: 10.5pt;"><span face="Arial" style="font-family: Arial;">7</span></span></label></li><li id="Q5C9" class="response select-area"><input type="radio" name="Q5" value="9" id="Q5_9" role="radio" aria-checked="false"><label for="Q5_9" class="btn btn-default button-text" title="8"><span style="font-size: 10.5pt;"><span face="Arial" style="font-family: Arial;">8</span></span></label></li><li id="Q5C10" class="response select-area"><input type="radio" name="Q5" value="10" id="Q5_10" role="radio" aria-checked="false"><label for="Q5_10" class="btn btn-default button-text" title="9"><span style="font-size: 10.5pt;"><span face="Arial" style="font-family: Arial;">9</span></span></label></li><li id="Q5C11" class="response select-area"><input type="radio" name="Q5" value="11" id="Q5_11" role="radio" aria-checked="false"><label for="Q5_11" class="btn btn-default button-text" title="10 - Extremely likely"><span style="font-size: 10.5pt;"><span face="Arial" style="font-family: Arial;">10 - Extremely likely</span></span></label></li>
			</ol>
		</div><script>
			renderButtonScaleQuestion('Q5', '-1')

		</script><div id="Q5ReqAns" tabindex="0" class="alert alert-danger validation-message" role="alert" style="display:none;">
			Please answer the question above before continuing.
		</div>
	</fieldset><!--Q5_END-->
	<!--Q36_START-->
	<fieldset id="Q36_WRAPPER" class="question essay">
		<legend id="Q36_LEGEND" class="sr-only">

		</legend><span id="Q36_QUESTION_TEXT"><a id="Q36_HEADING" class="question-heading anchor"></a><label for="Q36" class="question-text"><span face="Arial" font-size="14px" style="font-size: 14px; font-family: Arial;"><strong>Is there anything that we did not ask in this survey that you feel would be important for Verint to know?</strong></span></label></span><div class="response-set">
			<div class="field-wrapper" style="max-width: 650px;">
				<textarea class="form-control" name="Q36" id="Q36" rows="3" role="textbox" aria-multiline="true"></textarea><div class="form-control-static">

				</div>
			</div>
		</div>
	</fieldset><!--Q36_END-->
	<input type="hidden" id="CurrentPageId" name="CurrentPageId" value="1"><input type="hidden" id="SurveyId" name="SurveyId" value="29BB97FF0B6D827508DCE7F28F18C1A878"><input type="hidden" id="SessionKey" name="SessionKey" value="794e9c63-06a6-49bf-97cf-290f7afcee8f_1893023494">
		</div>
	</div>
	<div class="row">
		<div class="col-xs-6 col-xs-offset-3 col-md-4 col-md-offset-4">
			
		</div>
	</div>
	<div class="row">
		<div class="col-md-10 col-md-offset-1">
			<p id="BA"><input id="BN" type="submit" name="submit" class="btn btn-primary button-text button-next" role="button" value="Submit Survey"></p>
		</div>
	</div>
	<div class="row">
		<div class="col-md-10 col-md-offset-1 text-center">
			<small id="TL1" class="tagline perseus-link">
		<a href="https://www.verint.com/experience-management/" target="_blank">Powered by Verint </a>
	</small>
		</div>
	</div>
</div>
</form>

<div id="lightboxOverlay" tabindex="-1" class="lightboxOverlay" style="display: none;"></div><div id="lightbox" tabindex="-1" class="lightbox" style="display: none;"><div class="lb-outerContainer"><div class="lb-container"><img class="lb-image" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" alt=""><div class="lb-nav"><a class="lb-prev" role="button" tabindex="0" aria-label="Previous image" href=""></a><a class="lb-next" role="button" tabindex="0" aria-label="Next image" href=""></a></div><div class="lb-loader"><a class="lb-cancel" role="button" tabindex="0"></a></div></div></div><div class="lb-dataContainer"><div class="lb-data"><div class="lb-details"><span class="lb-caption"></span><span class="lb-number"></span></div><div class="lb-closeContainer"><a class="lb-close" role="button" tabindex="0"></a></div></div></div></div></body></html>