function clearf(object,text)
{
 if (object.value == text)
 {
  object.value = "";
  object.focus();
 }
}

function setf(object,text)
{
 if(object.value == "")
 {
  object.value = text;
  this.focus();
 }
}
