function launchSlide(dir, imgNum) {
	launchSlideManual(dir, imgNum, null, null);
}

function launchSlideManual(dir, imgNum, width, height) {
	var defaultWidth=730;
	var defaultHeight=730;
	
	if (width == null) width = defaultWidth;
	if (height == null) height = defaultHeight;

	openWin = window.open("/output/slide.php?p=" + dir + "&c=" + imgNum, "photo","toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes, width=" + width + ", height=" + height);
	if (openWin) openWin.focus();	
}

function LaunchImagePageManual(page, width, height) {
	OpenWin = this.open(page, "photo","toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes, width=" + width + ", height=" + height);
	if (OpenWin) OpenWin.focus();
}

function LaunchImagePage(page) {
	LaunchImagePageManual(page, 750, 700);
}
