function popUpPics(imageURL, imageTitle) {
	
	popUp = window.open('', '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=320,height=240');
//	document.title = "Loading";

    with (popUp.document){
	writeln('<html><head>');
	writeln('<script>');
	writeln('function doTitle(){document.title="'+imageTitle+'";}');
	writeln('</script>');
	writeln('</head><body bgcolor=000000 onload="doTitle();self.focus()" onblur="self.close()">');
	writeln('<img src='+imageURL+'></body></html>'); 
	close();
	}
}
