
function popMainLodgePlan(href) {
	return popPaddedCenter(href, "mainlodgeplan", 500, 363);
}
function popMiniLodgePlan(href) {
	return popPaddedCenter(href, "minilodgeplan", 500, 496);
}
function popTravelMap(href) {
	return popPaddedCenter(href, "travelmap", 476, 322);
}
function popGalleryImage(href, width, height) {
	return popPaddedCenter(href, "gallery", width, height + 50);
}


// ============================================================================
// ============================================================================

	
function popPaddedCenter(url, name, width, height) {
	return popCenter(url, name, width + 50, height + 50);
}
function popCenter(url, name, width, height) {
	var x = getCenterX(width);
	var y = getCenterY(height);
	window.open(url, name, "toolbar=no,location=no,status=yes,menubar=no,scrollbars=no,resizable=no,width=" + width + ",height=" + height + ",screenY=" + y + ",screenX=" + x + ",top=" + y + ",left=" + x);
	return false;
}
function getCenterX(width) {
	return (screen) ? (screen.availWidth - width)/2 : (640 - width)/2;
}
function getCenterY(height) {
	return (screen) ? (screen.availHeight - height)/2 :(480 - height)/2;
}	
