| ";
include ($html);
echo " | ";
return true;
} else {
$html = $path .$filename.".htm";
if (file_exists($html)) {
echo "| ";
include ($html);
echo " |
";
return true;
}
}
return false;
}
if ($enable_external_html_include) {
/* image view */
if ($image && !$top10) {
include_htm("image","twg_imagehtml");
}
/* thumb view */
if (!$image && $twg_album && !$top10) {
if (!include_htm("thumb","twg_thumbhtml", true)) {
include_htm("thumb","twg_thumbhtml");
}
}
/* overview */
if (!$image && !$twg_album && !$top10) {
include_htm("overview","twg_overviewhtml");
}
/* topx */
if ($top10) {
include_htm("topx","twg_overviewhtml");
}
}
?>