﻿function textChangeFocus(obj, isGotFocus, defText)
{
   if (isGotFocus)   {
     if (obj.value == defText) {
         obj.value = "";
     }
   } else   {
     if (obj.value == "") {
        obj.value=defText;
     }
   }
}

