function photoPopUp(caption, source, width, height, cssUrl)	{
	var generator=window.open('','name','scrollbars=yes,resizable=yes,height='+(parseInt(height)+75)+',width=' + (parseInt(width)+50));
	generator.document.write('<html><head><title>' + caption + '</title>');
	generator.document.write('<link rel="stylesheet" href="'+cssUrl+'">');
	generator.document.write('</head><body topmargin="5" leftmargin="5" rightmargin="5" bottommargin="5">');
	generator.document.write('<p class="photoFullImg" align="center"><img src="' + source + '" onclick="javascript:self.close()"></p>');
	generator.document.write('<p class="photoFullImgCaption" align="center">' + caption + '</p>');
	generator.document.write('<p class="closeLink" align="center"><a href="javascript:self.close()">Close this</a></p>');
	generator.document.write('</body></html>');
	generator.document.close();
}  

function photoPopUp2(author_name, author_email, caption, source, width, height, cssUrl)	{
	var generator=window.open('','name','scrollbars=yes,resizable=yes,height='+(parseInt(height)+75)+',width=' + (parseInt(width)+50));
	generator.document.write('<html><head><title>' + caption + '</title>');
	generator.document.write('<link rel="stylesheet" href="'+cssUrl+'">');
	generator.document.write('</head><body topmargin="5" leftmargin="5" rightmargin="5" bottommargin="5">');
	generator.document.write('<p class="photoFullImg" align="center"><img src="' + source + '" onclick="javascript:self.close()"></p>');
	generator.document.write('<p class="photoFullImgCaption" align="center">' + caption + '<br/>' + author_name + '</p>');
	generator.document.write('<p class="closeLink" align="center"><a href="javascript:self.close()">Close this</a></p>');
	generator.document.write('</body></html>');
	generator.document.close();
} 