'; if (isset($_GET["id"])) { $id = $_GET["id"]; $protofile = $config["homedir"]."/include/help/".$config["language"]."/help_".$id.".php"; if (file_exists ($protofile)){ echo "

"; echo "Pandora FMS Help System"; echo "


"; include $protofile; } else show_help_error(); } else { show_help_error(); } function show_help_error(){ global $config; global $lang_label; echo "
"; echo '

'; echo $lang_label['help_error']; echo "

"; echo "No help section
"; echo "
"; echo '
'; echo "
"; echo '
'.$lang_label["help_error_msg"].'
'; } ?>