// JavaScript Document

function enlargePic(thisId)
{
	var url = "http://www.artillerymag.com/images/reviews/large/";
	window.open(url + thisId + ".jpg", thisId, "width=800, height=600");
}
