function showLargePopup(imageCode,imageTitle,largeImageUrl){
	w = window.open('about:blank','_blank','status=no,toolbar=no,scrollbars=no,location=no,menubar=0,resizable=yes,width=600,height=600');
	w.document.clear();
	w.document.writeln('<html>');
	w.document.writeln('<head>');
	w.document.writeln('<title>' + imageTitle + ' - Large Image</title>');
	w.document.writeln('<script language="javascript">');
	w.document.writeln('function initWindow(){');
	w.document.writeln('if (window.resizeBy){');
	w.document.writeln('var image = document.getElementById(\'largeImage\');');
	w.document.writeln('var dx = image.width - 600;');
	w.document.writeln('var dy = image.height - 600;');
	w.document.writeln('window.resizeBy(dx,dy);	');			
	w.document.writeln('} else if (window.sizeToContent){');
	w.document.writeln('window.sizeToContent();');
	w.document.writeln('');
	w.document.writeln('} else {}');
	w.document.writeln('}');		
	w.document.writeln('</script>');
	w.document.writeln('</head>');
	w.document.writeln('<body onload="initWindow();" style="border: none; padding: 0; margin:0;" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0px" border="0" margin="0">');
	w.document.writeln('<img id="largeImage" src="'+ largeImageUrl + '" />');
	w.document.writeln('</body>');
	w.document.writeln('</html>');
	w.document.close();
}
