var imgSrc; 

function openInPopup(link){
	type = link.substr(link.length-3, link.length);
	if (type == 'gif' || type == 'jpg' || type == 'png' || type == 'jpeg'){
	  imgSrc = link;
	  var img = new Image();
	  img.onload = openPopup;
	  img.src = link;
	} else window.open(link);
}

function openPopup(){   
  var ppp = window.open('about:blank', '_blank', 'left=200, top=200, width=' + this.width + ',height=' + this.height);
  ppp.document.open();
  ppp.document.write("<html><head><title>Flexipack International Wunderlich GmbH + Co. KG</title></head><body style='margin:0px;'><img src='" + imgSrc + "'></body></html>");
  ppp.document.close();
}

