messages = new MESSAGES(); print $this->header(); print $this->openBody($helpLink); print $this->closeBody($pString); ob_end_flush(); die; } /** * Print HTML header information */ function header() { return <<< END OSBib-Create END; } /** * Open HTML body and print title table */ function openBody($helpLinkDisplay) { $helpLink = $this->messages->text("heading", "helpStyles"); $pString = <<< END1 END1; if($helpLinkDisplay) { $pString .= <<< END2 END2; } $pString .= <<< END3

OSBib-Create

Home $helpLink BIBLIOPHILE
END3; return $pString; } /** * Close HTML body and print result */ function closeBody($pString) { return <<< END
$pString
END; } } ?>