function submitXhtmlControlEventHandler(strxhtmlcontrol) {
	
	var aryXhtmlControl = strxhtmlcontrol.split(',');
	
	for (var i=0;i<aryXhtmlControl.length;i++) {		

		if (document.getElementById('fld' + aryXhtmlControl[i]) != null && document.getElementById(aryXhtmlControl[i]) != null) {
			
			document.getElementById('fld' + aryXhtmlControl[i]).EscapeUnicode = true;

			document.getElementById(aryXhtmlControl[i]).value = document.getElementById('fld' + aryXhtmlControl[i]).value;
			
		}
		else {
			alert("A problem occured.  Please close the browser without saving the page and contact your system administrator.");
		}
	}
}

