<!--
function SetControlFocus(elementId)
{
var control = document.getElementById(elementId);

if(control != null)
{
control.focus();
if (control.tagName != 'SELECT')
{
	control.select();
}
}
}
// -->

