/*
 *  Ahold Coffe Company 2006 - general Behaviour
 */
 
// Popup an external link
function openExternalLink(incomingLink) {
  window.open(incomingLink, incomingLink, "menubar=yes,toolbar=yes,location=yes,resizable=yes,scrollbars=yes,status=yes");
}
 
window.onload = function() {
  var anchors = document.getElementsByTagName("a");
  var j = null;
  var reference = null;
  for(i=0; i < anchors.length; i++) {
   if (anchors[i].getAttribute("class") == "externalLink") {
     reference = anchors[i].getAttribute("href");
     anchors[i].setAttribute("onClick", "openExternalLink('" + reference + "'); return false;");
   }
  }
}
