function activateField(field)
			{
				imagesCommon = document.getElementById('hiddenImagesCommonPath').value;
				//
				field.className='textInputYellow';
				elementName = 'validateIconFor' + field.id;
				if (document.getElementById(elementName)!=null)
					document.getElementById(elementName).src=imagesCommon+"spacer.gif";
			}
			//
			function activateFieldById(id)
			{
				imagesCommon = document.getElementById('hiddenImagesCommonPath').value;
				field = document.getElementById(id);
				//
				field.className='textInputYellow';
				elementName = 'validateIconFor' + field.id;
				if (document.getElementById(elementName)!=null)
					document.getElementById(elementName).src=imagesCommon+"spacer.gif";
			}
			function deactivateFieldById(id)
			{
				var field = document.getElementById(id);
				field.className='textInput';
			}
			function deactivateField(field)
			{
				field.className='textInput';
				
			}
			//
			function validateIcon(control_to_validate)
			{
				/*var imagesCommon = document.getElementById('hiddenImagesCommonPath').value;
				//
				var elementName = 'validateIconFor' + control_to_validate.id;
				var fieldNotFilledCorrectly = false;
				//Do nothing if client validation is not active...
				if(typeof(Page_Validators) == "undefined") return;
				for (var i = 0; i < Page_Validators.length; i++)
				{
					if(dom_getAttribute(Page_Validators[i], "controltovalidate") == control_to_validate.id)
					{
						ValidatorValidate(Page_Validators[i]);
						if(!Page_Validators[i].isvalid)
						{
							document.getElementById(elementName).src=imagesCommon+"icon_field_invalid.gif";
							fieldNotFilledCorrectly = true;
							break;
						}
					}
				}
				if(!fieldNotFilledCorrectly)
				{
					document.getElementById(elementName).src=imagesCommon+"spacer.gif";
				}*/
			}
