function pop(path, w, h, popName, scrollbars, resizable, menubar, toolbar) {
	if (!scrollbars) scrollbars=0;
	if (!resizable) resizable=0;
	if (!menubar) menubar=0;
	if (!toolbar) toolbar=0;

p = window.open(path,popName,'width=' + w + ',height=' + h + ',location=0,directories=0,status=0,menubar=' + menubar + ',toolbar=' + toolbar + ',scrollbars=' + scrollbars + ',resizable=' + resizable);
	p.focus();
}

function popQTVR(id, root) {
	if (!root) root = "";
	pop(root + 'pop_qtvr.php?id=' + id, 642, 430, 'popQTVR', 1, 1);
}

function popVideo(id, root) {
	if (!root) root = "";
	pop(root + 'pop_vid.php?id=' + id, 642, 430, 'popVideo', 0, 1);
}

function printFeature(lid, root) {
	if (!root) root = "";
	url = root + "text?sect=plantation&lid=" + lid + "&print=1";
	openPrintable(url);
}

function printRoom(lid, root) {
	if (!root) root = "";
	url = root + "text?sect=house&lid=" + lid + "&print=1";
	openPrintable(url);
}

function printRecord(id, type, root) {
	if (!root) root = "";
	url = root + "text?id=" + id + "&type=" + type + "&print=1";
	openPrintable(url);
}

function openPrintable(url) {
		pop(url, 700, 550, 'printable', 1, 1, 1, 1);
}

function popCredits(root) {
		if (!root) root = "";
		pop(root + 'credits.html', 700, 500, 'credits', 1, 1, 0, 0);
}

function popContact(root) {
		if (!root) root = "";
		pop(root + 'contact.php', 700, 500, 'contact', 1, 1, 0, 0);
}

function popHelp(section, root) {
		if (!section) section = "overview";
		if (!root) root = "";
		pop(root + 'help/index.php?sect=' + section, 550, 550, 'help', 1, 1, 0, 0);
}