		function wipeText(el, name) {
			if (el.defaultValue == el.value) {
				el.value = "";

				el.className="input2";				

				if (el.name == "password") {
					document.getElementById("swapper").innerHTML="<input type=\"password\" name=\"password\" id=\"pass_box\" class=\"input2\" />" ;
					document.getElementById("pass_box").focus();
				}
			}
		}
