// moves cursor to end of text in the textbox
function MoveCursorToEnd(txt) {
  txt.focus();

  var oRange = txt.createTextRange();
  oRange.moveStart('character', txt.value.length);
  oRange.select();
}

function ShowPopUp() {

}