 // LUTFEN BU SATIRLARI SILMEYINIZ. (Yüksel AYGUT)
function YUKSELAYGUT(unicode) {
var myForm = document.conversion.saisie;
 //ie internet explorer için (Yüksel AYGUT)
  if (document.selection) {
myForm.focus();
sel = document.selection.createRange();
sel.text = String.fromCharCode(unicode);
document.conversion.focus();
}
//moz mozilla için (Yüksel AYGUT)
else if (document.conversion.saisie.selectionStart || document.conversion.saisie.selectionStart == "0") {
 var startPos = document.conversion.saisie.selectionStart;
var endPos = document.conversion.saisie.selectionEnd;
 var chaine = document.conversion.saisie.value;
myForm.value = chaine.substring(0, startPos) + String.fromCharCode(unicode) + chaine.substring(endPos, chaine.length);
} else {
 myForm.value += String.fromCharCode(unicode);
}
var obj=document.conversion.saisie;
obj.focus();
obj.scrollTop=obj.scrollHeight;
 }
function copy()
{ textRange=document.conversion.saisie.createTextRange();   textRange.execCommand("Copy");   textRange="";
}