/* vanguard.js */

var popupImage;
function enlarge(img) {
	var myImage = new Image();
	myImage.src = img;

	if(popupImage && !popupImage.closed)
		popupImage.close();

	var code = "<html><head><title>Vanguard</title></head>";
	code += "<body style='margin: 0px;'>";
	code += "<a href='javascript:close()'><img src='"+ myImage.src +"' width='"+ myImage.width +"' height='"+ myImage.height +"' border='0' alt='Click to Close'></a>";
	code += "</body></html>";

	var properties="resizable, width="+ myImage.width +", height="+ myImage.height +", left=5, top=5";
	popupImage = window.open("", "popupImage", properties);
	popupImage.document.write(code);
}

