function iAC(g) {
	var c =document.getElementById('searchbox');
	if(c.value=='Sözlükte Ara')
		c.value='';
    if (document.selection) {
        var b;
        c.focus();
        sel = r();
        b = sel.text.lenght;
        sel.text = g;
        if (g.length == 0) {
            sel.moveStart("character", g.length);
            sel.moveEnd("character", g.length)
        } else {
            sel.moveStart("character", -g.length + b)
        }
        sel.select()
    } else {
        if (c.selectionStart || c.selectionStart == "0") {
            var f = c.selectionStart;
            var a = c.selectionEnd;
            c.value = c.value.substring(0, f) + g + c.value.substring(a, c.value.length);
            c.selectionStart = f + g.length;
            c.selectionEnd = f + g.length;
            c.focus()
        } else {
            c.value += g
        }
    }
}
function r() {
    return document.selection.createRange()
}
