﻿function drawCatalog(catalogID,catalogTitle,bgColor,imageWidth,imageHeight,launchURL,launchTarget) {
	var mag = new TinyCatalog(catalogID, catalogTitle);
	mag.setBackgroundColor(bgColor);
	mag.setSize(imageWidth, imageHeight);
	// Change line below to link to an url
	// mag.setLaunchURL(launchURL);
	// mag.setTarget(launchTarget);
	mag.draw();
}