/*
Gives focus to a form element
*/
function SetFocus(obj)
{
	if (document.getElementById(obj))
		document.getElementById(obj).focus();
}

