function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 //var k = window.open('','Test', 'height=800, width=800');
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("rel") == "popup"){
		//anchor.onclick = function(){
		var z = anchor;
		z.onclick = function(){
		var url = this.href;
		var gen = window.open("", null, "height=350, width=350");
		gen.moveTo(200,100);
		gen.focus();
		gen.document.write('<html><head><title>B&amp;B Electric</title>');
		gen.document.write('<style type=\'text/css\'>body {margin:0;}</style>');
  		gen.document.write('</head><body>');
		gen.document.write('<img src=\''+url+'\' height=\'350\' width=\'350\' alt=\'Product image\' />');
  		gen.document.write('</body></html>');
  		gen.document.close();
		return false; 
		}
	 }
 }
}
window.onload = externalLinks;