
function OpenPopup(url, width, height) {
	wLeft = (screen.width - width) / 2;
	wTop = (screen.height - height) / 2;
	params = "menubar=no, status=0, scrollbars=yes, titlebar=yes, resizable=yes, left=" + wLeft + ", top=" + wTop + ", width=" + width + ", height=" + height;
	return window.open(url, "", params);
}

function OpenScriptExcerpts(name, inSubDir) {
	filename = (inSubDir ? "../" : "") + "scripts/excerpts/" + name + ".html";
	OpenPopup(filename, 500, 450);
}
function OpenScriptFull(name, inSubDir) {
	filename = (inSubDir ? "../" : "") + "scripts/full/" + name + ".html";
	OpenPopup(filename, 600, 500);
}

function OpenLargePhoto(name, inSubDir, width, height, title) {
	w = OpenPopup("", width+20, height+8);
	filename = (inSubDir ? "../" : "") + "images/photos/large/" + name + ".jpg";
	w.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><title>'+title+'</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><style type="text/css">body { margin: 2px 0 0 0; text-align: center; vertical-align: middle; }</style></head><body><img src="'+filename+'" width="'+width+'" height="'+height+'" border=0 ALT="'+title+'"></body></html>');
	w.document.close();
}
