﻿
function ChangeControlText(control,OldText,NewText) {
	if(control.GetText()==OldText)
	{
	control.SetText(NewText)
	};
}

  
