function alpha(val) {
var formplace = document.conversion.gemyakurda;
 //ie
  if (document.selection) {
formplace.focus();
sel = document.selection.createRange();
sel.text = val;
document.conversion.focus();
}
//moz
else if (document.conversion.gemyakurda.selectionStart || document.conversion.gemyakurda.selectionStart == "0") {
var startPosition = document.conversion.gemyakurda.selectionStart;
var endPosition = document.conversion.gemyakurda.selectionEnd;
var chaine = document.conversion.gemyakurda.value;
formplace.value = chaine.substring(0, startPosition) + val + chaine.substring(endPosition, chaine.length);
} else {
 formplace.value += val;
}
var obj=document.conversion.gemyakurda;
obj.focus();
obj.scrollTop=obj.scrollHeight;
 }
function copy()
{ textRange=document.conversion.gemyakurda.createTextRange();   textRange.execCommand("Copy");   textRange="";
}
