function textBoxEdit(sid,textval)
{
  var tbox = document.getElementById(sid);
  if(tbox.value == textval) tbox.value = '';

}

function textBoxEdit1(sid,textval)
{
  var tbox = document.getElementById(sid);
  if(tbox.value == '') tbox.value = textval;

}
