// ############################################################################
// ## INCLUDES ##
// ############################################################################
require_once ($_SERVER['DOCUMENT_ROOT']."/includes/build_page.class.php");
$titleimage1 = "";
$titleimage2 = "content_bg.gif";
$ie_title = "SaniWow! - Better Solutions for Cleaning and Protecting Bathrooms";
$title = "Home";
$content = '
Better Solutions
for Cleaning and Protecting
Bathrooms
When your customer buys a high quality bathroom, he or she wants it to stay
looking good for a very long time. Ideally they would like to spend as little
time as possible on maintenance. Now you can offer a high-performance care and
protection solution which is very easy to use.
';
$page = new build_page();
$page->template($_SERVER['DOCUMENT_ROOT']."/includes/template.tpl", true);
$page->insert ("ie_title" , $ie_title);
$page->insert ("title", $title);
$page->insert ("titleimage1", $titleimage1);
$page->insert ("titleimage2", $titleimage2);
$page->insert ("content", $content);
$page->output ();
?>