function newwindow(whichpic){
				var source = whichpic.getAttribute('href');
				var title = whichpic.getAttribute('title');
				var photo = 'photo.php?page=';
				var and = '&img=';
				var string =photo+title+and+source;
				window.open(string,'index','width=600,height=600,resizable=no scrollbar=no location=no status=no'); 
			}
