function showPanel(e) {
	var expanded = document.getElementById("login-panel");
	expanded.style.left = e.clientX-400;
        expanded.style.top = e.clientY+10;
        expanded.style.display = "block";
        document.getElementById('name').focus();
	return false;
}

function hidePanel(e) {
	var expanded = document.getElementById("login-panel");
	expanded.style.display = "none";
}

function showLoading() {
	id="loading"; 
	obj = (document.getElementById ? document.getElementById(id) : (document.all ? document.all[id] : (document.layers ? document.layers[id] : null))); 
	obj.style.width = '100%';
	obj.style.height = '100%';
	obj.style.visibility = 'visible';
	window.scrollTo(0,0);
}

function hideLoading() {
	id="loading"; 
	obj = (document.getElementById ? document.getElementById(id) : (document.all ? document.all[id] : (document.layers ? document.layers[id] : null))); 
	obj.style.visibility = 'hidden';
}

function preload() {
	if(document.images)
	{
		picture2 = new Image();
		picture2.src = "include/loading.png";
	}
}

