function dcComRADLoginInit()
{
	var u = document.getElementById("twLoginUsername");
	var p = document.getElementById("twLoginPassword");
	if( u && u.value == "" ) u.focus();
	else if( p ) p.select();
}
if (window.addEventListener) window.addEventListener("load", dcComRADLoginInit, false)
else if (window.attachEvent) window.attachEvent("onload", dcComRADLoginInit)
else if (document.getElementById) window.onload=dcComRADLoginInit;