function submitForm() {
	obj=document.getElementById('loginform');
	obj.submit();
}

function noAccess() {
	alert("You do not have access to this page. This is for Members Only.");
}

function showDiv(inDivId) {
	obj=document.getElementById(inDivId);
	obj.style.display = "block";
}

function hideDiv(inDivId) {
	obj=document.getElementById(inDivId);
	obj.style.display = "none";
}
