	
function toLink() {
var izprashtach = document.form.izprashtach.value;
var poluchatel = document.form.poluchatel.value;
var message = document.form.message.value
var aa = 'http://www.360.bg/vt/velikden/?from=' + izprashtach + '&to=' + poluchatel + '&message=' + message;
  var link = '';
  for(i=0; i<aa.length; i++)
  {
   if(aa.charCodeAt(i)==32)
   {
   link += '%20';
   }  
   else if(aa.charCodeAt(i)>127)
    {
      link += '~s' + aa.charCodeAt(i) + '~e';
    }
    else
    {
      link += aa.charAt(i);
    }
  }

  document.form.link.value = link;
  document.getElementById('testvai').href= link;
}
function SelectAll(id)
{
    document.getElementById(id).focus();
    document.getElementById(id).select();
}

