function populateInput( id, text, comp )
{
	obj = document.getElementById( id );
	if ( obj.value == comp )
	{
	  obj.value = text;
	}
}
