// JavaScript Document
function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}

function changefield(){
		document.getElementById("passwordbox").innerHTML = "<input name=\"subpassword\" id=\"subpassword\" type=\"password\" class=\"members_input_box\" size=\"15\">";
		document.getElementById("subpassword").focus();
		var box = document.getElementById('subpassword');
	box.focus();
	}
