// JavaScript Document

				function cc()
				{
					/* check to see if cookies are enabled in browser */
					if (document.cookie == "") 
					{
						/* if a cookie is not found - alert user -
						change cookieexists field value to false */
						alert("COOKIES need to be enabled!");
						/* If the user has Cookies disabled an alert will let him know 
							that cookies need to be enabled.*/ 
						//document.Form1.cookieexists.value ="false"  
					} else {
					/* this sets the value to true and nothing else will happen,
						the user will be able to log on*/
						//document.Form1.cookieexists.value ="true"
					}
					}
					/* Set a cookie to be sure that one exists.
					Note that this is outside the function*/
					document.cookie = 'killme' + escape('nothing')
					// -->
		</script>
		<script language="javascript" type="text/javascript"> 
			function closeWindow() { 
			//for firefox moxilla ordinary close will not work.
			window.open('','_parent',''); 
			window.close(); 
			} 
		</script> 
		<!--insert script block here -->
		<script language='JavaScript' src='ClientInclude/Utility.js'></script>
<script language='JavaScript'>function submitCheck(){var flgValueSelected;
var lngTotalValue = 0;
var strTemp;
var strSelectedValues ='';
var coll = document.forms['frmSurvey'];var lngNumberEntered = 0;var strName;if (coll != null) {for (i = 0; i < coll.length; i++){strName = coll.elements[i].name;if (strName.indexOf('QID1016') > -1){strTemp = trim(coll.elements[i].value);if (strTemp.length > 0){lngNumberEntered = lngNumberEntered + 1;}
}
}
}
document.forms['frmSurvey'].submit();}