function showImg(i,filename) {
	if (document.images) 
		document.images[i].src = filename;
}



var newwindow;
		function popPhotoGallery(url)
		{
			newwindow=window.open(url,'name','height=670,width=990');
			if (window.focus) {newwindow.focus()}
		}
