 

//images popup
var currentImage=1;
var currentArrayPosition=1;
function showLargeImage(id){
win=window.open('/product-images/' + id + '/' + currentArrayPosition	 + '.htm','details','width=300,height=200');
win.focus();
} 
 

 

function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
 }
}
window.onload = externalLinks;

