function submitForm(){
	var thisForm = document.getElementById? document.getElementById("login") : document.all.login;
	thisForm.submit();
}
function showHelp(){
	var doc = document.getElementById? document.getElementById("help") : document.all.help;
	doc.style.visibility = 'visible';
}
	
