
function popImage(imageURL,caption,imgW,imgH){
	imgWin=window.open('about:blank','','scrollbars=no,width=' + (imgW +100) + ',height=' + (imgH + 150));
	
	with(imgWin.document){
		writeln('<html><head><title>' + caption + '</title>');
		writeln('<style>body{margin:20px;}</style><link href="css/style_mmv.css" rel="stylesheet" type="text/css" />');
		writeln('</head><body scroll="no">');
		writeln('<div class="figure_full"> <p><img src="'+imageURL+'" width="' + imgW + '" height="' + imgH + '" alt="' + caption + '"></p><p>' + caption + '</p></div></body></html>');
		close();
	
	}	
}


