// JavaScript Document

<!-- Hide from older browsers
	//var image=document.getElementByID('image');
function showImg (imgstr) {
	window.open(imgstr,"window1","location,height=505,width=665");
}

if (document.getElementById) {
	window.onload=loopy;
}

function loopy () {
	for (i = 1; i <= 1000; i ++) {
	piclink = document.getElementById('piclink'+i);
	attach (piclink);
	}
}

function attach (piclink){
	if (piclink) {
		var piclinkhref = piclink.href;
		piclink.onclick=function(){return showImg(piclinkhref);};
		piclink.target = "_self";
		piclink.href = "#";
	}
}
//-->