function clearField(path)
{

var e = getElements(path);
var i;

for (i=0;i<e.length;i++) {
	e[i].value = e[i].title;
	e[i].onfocus = function() { if (this.value == this.title) this.value = ''; }
	e[i].onblur = function() { if (this.value == '') this.value = this.title; }
}

}

window.onload = function() { clearField('input.clearField'); }