function highlightInput( strElt )
{
	var eltObj = document.getElementById( strElt );
	eltObj.focus();
	eltObj.select();
}
