function emptyTextBox(strId, strCompareValue)
			{
				if(document.getElementById(strId))
				{
					if(document.getElementById(strId).value == strCompareValue)
					{
						document.getElementById(strId).value = ""
					}
				}
			}
/*			function fillTextBox(strId, strValue)
			{
				if(document.getElementById(strId))
				{
					if(fnTrim(document.getElementById(strId).value) == "")
					{
						document.getElementById(strId).value = strValue;
					}
				}
			}*/