function clearForm(currentObj) {
	var currentField = document.getElementById(currentObj.id);
	currentField.value = "";
}

window.onload = function(){
	a_tags = document.getElementsByTagName("A");
	for(i=0; i<a_tags.length; i++ ){
		a_tags[i].onfocus = function(){
			this.blur();
		}
	}	
}