function type_select() { val = document.form1.fileadd.options[document.form1.fileadd.options.selectedIndex].value; textbox = parent.document.postcontent.content; //IE support if (document.selection) { textbox.focus(); sel = document.selection.createRange(); sel.text = val; textbox.focus(); } //MOZILLA/NETSCAPE support if (textbox.selectionStart || textbox.selectionStart == '0') { var startPos = textbox.selectionStart; var endPos = textbox.selectionEnd; var scrollTop = textbox.scrollTop; textbox.value = textbox.value.substring(0, startPos) + val + textbox.value.substring(endPos, textbox.value.length); textbox.focus(); textbox.selectionStart = startPos + val.length; textbox.selectionEnd = ...