function createZoomify(id, type, width, height, color, root, hideAlternates) {
	if (!width || width < 300) width = 300;
	if (!height || height < 200) height = 200;
	if (!root) root = "";
	if (!hideAlternates == 1) hideAlternates = 0;
	//alert("ID: " + id + ", TYPE: " + type + ", WIDTH: " + width + ", HEIGHT: " + height + ", COLOR: " + color);
	
	var url = root + "zoomify.asp?id=" + id + "&type=" + type + "&width=" + width + "&height=" + height + "&color=" + color + "&hideAlt=" + hideAlternates;
	pop(url, width, height + 90, "zoomify", 0, 1);
}

function popupTranscript(SectionID) {
	var url = "transcript.asp?id=" + SectionID;
	pop(url, 400, 450, "transcript", 1, 1);
}

function printableObject(ID) {
	var url = "../collection/object.asp?id=" + ID + "&printable=1";
	pop(url, 760, 550, "printable", 1, 0, 1, 1);
}

