 	
		function display_errors(Errors,objAppend,strLabel,strWidth){
			var strURL = STR_ROOT_URL+"/includes/html_get_hint.php";
			var objNewForm = document.createElement('Form');
			objNewForm.method = 'POST';
			objNewForm.action = strURL;

			//-------------
			if(strLabel){
				var objNewInput = document.createElement('input');
				objNewInput.value = strLabel;
				objNewInput.type = "hidden";
				objNewInput.name = "Label";
				
				objNewForm.appendChild(objNewInput,true);
			}
			if(strWidth){
				var objNewInput = document.createElement('input');
				objNewInput.value = strWidth;
				objNewInput.type = "hidden";
				objNewInput.name = "Width";
				
				objNewForm.appendChild(objNewInput,true);
			}
			//-------------
			var strType = typeof(Errors);
			var isError = false;
			

			if(objAppend){
				if(strType == 'number' || strType=='string'){
					var objNewInput = document.createElement('input');
					objNewInput.value = Errors;
					objNewInput.type = "hidden";
					objNewInput.name = "ErrorCode";
				
					objNewForm.appendChild(objNewInput,true);
				}else if(strType == 'object'){

					for(var i=0;i<Errors.length;i++){
						
						var objNewInput = document.createElement('input');
						objNewInput.value = Errors[i];
						objNewInput.type = 'hidden';
						objNewInput.name = 'Message[]';

						objNewForm.appendChild(objNewInput,true);

					}
				}else{
					alert("Input type error");
					isError = true;
				}
			}else{
				alert("can't find object to display");
				isError = true;
			}

			if(!isError){
				_htmlLoader(document.body,objAppend,objNewForm,false);
			}
		};