// JavaScript Document

	function initLoginForm() {
		input_name = document.getElementById('username');
		input_passwd = document.getElementById('password');
	
	}
	window.onload = function() {
		setTimeout(initLoginForm, 50);
	}
	function fullScreen(theURL) {
		window.open(theURL, '', 'fullscreen=yes, scrollbars=auto');
	}

