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

