function showLargeImage(image) 
{
	//var img = document.getElementById("imgLarge");
	//img.src = image.src.replace("small", "large");
	var url = "http://www.totallycatholicfundraising.com/resources/images/" + image;
    
    window.open(url ,'bigimage');
}

