function openwindow(url,wname,features) {
  window.open(url,wname,features);
}

function SelectAll(id)
{
    document.getElementById(id).focus();
    document.getElementById(id).select();
}