function emptyTextBox(strId, strCompareValue)
			{
				if(document.getElementById(strId))
				{
					if(document.getElementById(strId).value == strCompareValue)
					{
						document.getElementById(strId).value = ""
					}
				}
			}