function prependImageInPlainLink(link) {
    var arrow = document.createElement('img');
    arrow.src = portal_url + '/arrow_link.gif';
    arrow.alt = link.title;
    arrow.border = 0;
    arrow.className = "arrowLink";
    link.insertBefore(arrow, link.firstChild);
}
