function changeLink(url, image, textTitle, textclass, subject, postdate, div, borderColor)
{
  background = "#000 url(../" + image + ")";
  document.getElementById("highlightedText").style.background = background;
  
  if(textTitle.length > 42) {
    textTitleFixed = textTitle.substring(0, 39) + "...";
  }
  else {
    textTitleFixed = textTitle;
  }

  document.getElementById("highlightedText").innerHTML = "<table cellpadding=\"0\" cellspacing=\"0\"><tr><td width=\"483\" height=\"239\" style=\"background: url(../layout/index/pubsinfocus.png) no-repeat;\"></td></tr><tr width=\"483\" height=\"46\" style=\"background: url(../layout/index/pubsinfocus_background.png) repeat;\"><td></td></tr></table><span style=\"DISPLAY: inline-block; width:410px; color: #fff; text-align:justify; position:relative; top:-42px; left:6px;\" title=\"" + textTitle + "\"><h1>" + textTitleFixed + "</h1><span class=\"" + subject + "text\">" + subject + "</span> <b>" + textclass + "</b> " + postdate + "</span><span style=\"text-align:justify; position:relative; top:-50px; right:-20px;\"><a href=\"" + url + "\" class=\"lankwhite\">Läs mer</a></span>";

  <!-- Återställ alla färger på ramarna //-->
  
  document.getElementById("Text1").style.borderColor = "#000";
  document.getElementById("Text1").innerHTML = "";
  document.getElementById("Text2").style.borderColor = "#000";
  document.getElementById("Text2").innerHTML = "";
  document.getElementById("Text3").style.borderColor = "#000";
  document.getElementById("Text3").innerHTML = "";
  document.getElementById("Text4").style.borderColor = "#000";
  document.getElementById("Text4").innerHTML = "";
  
  <!-- Sätt färg på den valda bilden //-->

  document.getElementById(div).style.borderColor = "#000 #000 #000 #" + borderColor;
}