// JavaScript Document
function ClearForm() {
	var input=document.getElementsByTagName("input");
		if (input.id =="allavailable") {
			document.login.username.value= "";
			document.login.password.value= "";
		}
	}
window.onload = ClearForm();