function init() {

	// Set the focus on the login element
	var l = document.getElementById('login');
	if (l && l.focus && l.select) {
		l.focus();
		l.select();
	}

	// Check to see if they are on a page with the right beige text section
	// ... if so, stretch it out to full height of the page
	if (document.getElementById) {
	  var p1 = document.getElementById('p1');
	  var p2 = document.getElementById('p2');
	  if (	p1 && p2 &&
		p1.offsetHeight &&
		p2.offsetHeight &&
		p1.offsetHeight > p2.offsetHeight &&
		p2.style	) {
		  p2.style.height = p1.offsetHeight + 'px';
	  }
	}

	if (window.init2) init2();
}

window.onload = init;