/*
 * Login Javascript Functions
 */
 
// ========================================================================
//
// 	Browser Detection
//
// ========================================================================

var IE4 = (document.all && !document.getElementById) ? true : false;
var IE5 = (document.all && document.getElementById) ? true : false;
var DOM = (!document.all && document.getElementById) ? true : false;

function onLoadCalls() {
	document.login.j_username.focus();
}

if (IE5) {
	window.attachEvent ("onload", onLoadCalls); // Will work together with body tag onload calls in IE
} else {
	window.onload = onLoadCalls;
}