<!--
/* Set a cookie to be sure that one exists.*/
document.cookie = 'CookiesEnabled=1';
function system_check() {
if(document.form){
	/* set flash form variable */
	if( document.form.flash_app_ver != null ) {document.form.flash_app_ver.value = versionNum;}
	/* check for a cookie */
	  if (document.cookie == "") 
	  {
		/* if a cookie is not found - alert user - change cookieexists field value to false */
		/*alert("Session cookies need to be enabled in your browser.");*/
		document.form.system.value ="false";
	  } else {
	   /* set the value to true and nothing else will happen, the user will be able to log on*/
		document.form.system.value ="true";
	  }
	}
else {
	document.form.system.value ="true";
	}
}
// -->
