<!--
$(document).ready(function() {
	$("a.larger").click(function() {
		window.open($(this).attr("href"),"Enlarge_Image","width=425,height=300,location=0,menubar=0,status=0,toolbar=0,resizable=0,scrollbars=0");
		return false;
	});
});

-->