function Enlarge(url)
{
	// Display a pop up window of the enlarged image.
	var generator=window.open('','_blank','height=768,width=768,scrollbars=yes,resizable=yes');
	generator.document.write('<html><head><title>Enlarged Photo</title>');
	generator.document.write('<link rel="stylesheet" type="text/css" href="http://www.catholicfreeshipping.com/styles.css"');
	generator.document.write('</head><body>');
	generator.document.write('<p align=center><a href="javascript:self.close()" title="Click to Close">');
	generator.document.write('<img src="'+url+'" border=0>');
	generator.document.write('</a></p>');
	generator.document.write('</body></html>');
	generator.document.close();
}

function startup()
{
	// any startup scripts (if needed)
}