﻿//Javascript

function hideLogin(){
	$("#logbox").hide();
	return false;
}

function showLogin(){
	$("#logbox").show();
	return false;
}