spanit = document.getElementsByTagName('span');

function map_popup(){
  url = "2387Printi/map.html";
  mapWindow=window.open(url,"Email","height=620,width=850,left=400,top=200,resizable=1,scrollbars=1,status=no,toolbar=no,location=no,menubar=no");
    mapWindow.focus(); 
}


for (var i=0, len=spanit.length; i<len; ++i) {

if (spanit[i].className == 'small-text') {

mytd = spanit[i].parentNode;

newdiv = document.createElement('div');
newa = document.createElement('a');

newa.setAttribute('href', '#');
newa.onclick = new Function("map_popup()");
newa.style.color = '#003082';
newa.appendChild(document.createTextNode('Click here to enlarge.'));



newdiv.style.textAlign = 'center';
newdiv.style.position = 'relative';
newdiv.style.left = '10px';
newdiv.appendChild(newa)


mytd.insertBefore(newdiv,spanit[i]);

}

}