// JavaScript Document

<!--
	function modifyFormField(obj,idSwap) {
		if (typeof idSwap == "undefined") {
			if (obj.defaultValue == obj.value) {
				clearText(obj);
			}
			else if (obj.value == '') {
				showText(obj);
			}
		}
		else {
			if (obj.type == "password") {
				blurPassword(obj,idSwap);
			}
			else if (obj.type == "text") {
				focusPassword(obj,idSwap);
			}
		}
	}
	
	function clearText(obj) {
		obj.value = '';
	}

	function showText(obj) {
		obj.value = obj.defaultValue;
	}
	
	function focusPassword(obj,id) {
		var elm = document.getElementById(id);
		elm.style.display = "block";
		scroll(0,0);   //for ff
		obj.style.display = "none";
		elm.focus();
		scroll(0,0);   //for ff
	}
	
	function blurPassword(obj,id) {
		var elm = document.getElementById(id);
		if( obj.value == '' ) {
			elm.style.display = "block";
			obj.style.display = "none";
		}
	}
//-->