1/**
2 * modified by pm from insertButton to insert a value at location
3 * it is used by the dropdown menu to place a link into the edit box
4 */
5function insertIntLink( value) {
6  value=escapeQuotes(value);
7      value= "[[" + value + "]]";
8  insertAtCarret (document.editform.wikitext,value);
9  return;
10}