<html>
<head>

    <!--- Change Page Title --->
    <title>My Website Name</title>

    <!--- Change content="" 200 characters or less between the ""s--->
    <meta name="description" content="">

    <!--- Change content="" to a 20 keywords between the ""s. Make sure to separate with a , --->
    <meta name="keywords" content="">

    <!--- Page Author --->
    <meta name="author" content="My Website Name, email@yoursite.com">

    <!--- Change the file only, not the link. Site Style. --->
    <link rel="stylesheet" type="text/css" href="includes/sitestyle.css">

    <!--- Change the icon file, not the file name. Upload image to image folder and main folder --->
    <link rel="shortcut icon" href="http://www.yoursite.com/includes/images/favicon.ico">
</head>

<body>

<table>
    <tr>
        <td width="160"><!--- Upper LeftLogo (160x160 or 20% <center></center>) ---><?php include ("includes/upperleft.inc.php"); ?><td>
        <td><!--- Blank Column --->&nbsp;</td>
        <td width="70%"><!--- Main Header (70% <h1><center></center></h1>) ---><?php include ("includes/header.inc.php"); ?></td>
        <td><!--- Blank Column --->&nbsp;</td>
        <td width="160"><!--- Upper Right Corner (160x160 or 10% <center></center>) ---><?php include("includes/upperright.inc.php"); ?></td>
    </tr>
    <tr>
        <td></td>
        <td><!--- Blank Column --->&nbsp;</td>
        <td>
            <?php include ("includes/menubar.inc.php" ); ?>
        </td>
        <td><!--- Blank Column --->&nbsp;</td>
        <td></td>
    </tr>
    <tr>
        <td valign="top"><!--- Left Side ---><?php include ("includes/sideleft.inc.php" ); ?></td>
        <td><!--- Blank Column --->&nbsp;</td>
        <td valign="top">

            <!--- Start Breadcrumbs Divide each breadcrumb with a > and a &nbsp; on each side--->
            <div class="breadcrumbs">
                <a href="index.php">Home</a>
            </div>
            <!--- End Breadcrumbs --->

            <!--- Content --->
            <h2>Title</h2>

            <p>Coming Soon.</p>


            <br><br>

            </td>
            <td><!--- Blank Column ---> </td>
            <td valign="top"><!--- Right Side (Ad Space width = 160) ---><?php include ("includes/sideright.inc.php"); ?></td>
    </tr>
    <tr>
        <td><!--- Lower Left Corner (160x160) ---><?php include ("includes/lowerleft.inc.php"); ?></td>
        <td><!--- Blank Column ---> </td>
        <td><!--- End Content ---><?php include ("includes/endcontent.inc.php"); ?></td>
        <td><!--- Blank Column ---> </td>
        <td><!--- Lower Right Corner (160x160) ---><?php include ("includes/lowerright.inc.php"); ?></td>
    </tr>
    <tr>
        <td colspan="5"><!--- Bottom (468x60)---><?php include ("includes/bottom.inc.php"); ?></td>
    </tr>
</table>

</body>

</html>