/**
 * 
 */
function checkBlur(obj, text)
{
  if ( obj.value.length == 0 )
  {
	obj.value = text;
  }
}

/**
 * 
 */
function checkFocus(obj, text)
{
  if ( obj.value == text )
  {
    obj.value = "";
  }
}
