// JavaScript Document

function login (show, hide)
{
	var hideText = document.getElementById(hide);
	var showText = document.getElementById (show);
	hideText.style.display="none";
	showText.style.display="block";
}