var modifiedDate = new Date("Wed Feb 9 07:00:00 CST 2005");

function printHomeHeader()
{
    document.write("<table class='background-dark' cellSpacing='0' cellPadding='0' width='100%' border='0'>");
    document.write("    <tr>");
    document.write("        <td align='center'><img alt='' src='images/main_logo.jpg'></td>");
    document.write("    </tr>");
    document.write("</table>");
}

function printHeader()
{
    document.write("<table class='background-dark' cellSpacing='0' cellPadding='0' width='100%' border='0'>");
    document.write("    <tr>");
    document.write("        <td align='center'><img alt='' src='images/logo.jpg'></td>");
    document.write("    </tr>");
    document.write("</table>");
}

var months = new Array();
months[0] = "January";
months[1] = "February";
months[2] = "March";
months[3] = "April";
months[4] = "May";
months[5] = "June";
months[6] = "July";
months[7] = "August";
months[8] = "September";
months[9] = "October";
months[10] = "November";
months[11] = "December";

function printLinks()
{
    document.write("<table cellSpacing='0' cellPadding='0' width='100%' border='0'>");
    document.write("    <tr class='background-shadow'>");
    document.write("        <td colspan='2'><img height='1' alt='interface image' src='images/transparent.gif' width='5'></td>");
    document.write("    </tr>");
    document.write("    <tr class='background-light'>");
    document.write("        <td colSpan='2'><img height='1' alt='' src='images/transparent.gif' width='1'></td>");
    document.write("    </tr>");
    document.write("    <tr class='background-med'>");
    var modifiedDateString = months[modifiedDate.getMonth()];
    modifiedDateString += " " + modifiedDate.getDate();
    modifiedDateString += ", " + modifiedDate.getYear();
    document.write("        <td noWrap class='text-small'>&nbsp;&nbsp;&nbsp;Last Modified Date: <b>"+modifiedDateString+"<b></td>");
    document.write("        <td class='channel-text' noWrap align='right' width='100%'>");
    document.write("            <a class='navigation-category' href='./index.html'>Home  </a>| <a class='navigation-category' href='./downloads.html'>Downloads  </a>| <a class='navigation-category' href='./pricing.html'>Pricing  </a>| <a class='navigation-category' href='./why_us.html'>Why Us?  </a>| <a class='navigation-category' href='./getting_started.html'>Getting Started  </a>| <a class='navigation-category' href='./specials.html'>Specials  </a>");
    document.write("            <img height='1' alt='' src='images/transparent.gif' width='10'>");
    document.write("        </td>");
    document.write("    </tr>");
    document.write("    <tr class='background-shadow'>");
    document.write("        <td colspan='2'><img height='1' alt='interface image' src='images/transparent.gif' width='5'></td>");
    document.write("    </tr>");
    document.write("    <tr class='background-light'>");
    document.write("        <td colspan='2'><img height='1' alt='interface image' src='images/transparent.gif' width='5'></td>");
    document.write("    </tr>");
    document.write("</table>");
}

/*
*/

function printBeginParagraph(heading, outsidePadding)
{
    if (!outsidePadding) outsidePadding = 10;
    document.write("            <table cellSpacing='0' cellPadding='0' width='100%' border='0'><tr><td width='100%' align='center' valign='top'>");
    document.write("            <table class='background-dark' cellSpacing='0' cellPadding='0' width='100%' border='0'>");
    document.write("                <tr>");
    document.write("                    <td width='" + outsidePadding + "'><img width='" + outsidePadding + "' alt='' height='1' src='images/transparent.gif'></td>");
    document.write("                    <td class='background-shadow' colSpan='3' ><img alt='' width='1' height='1' src='images/transparent.gif'></td>");
    document.write("                    <td class='background-med' width='1'><img width='1' alt='' height='1' src='images/transparent.gif'></td>");
    document.write("                    <td width='" + outsidePadding + "'><img width='" + outsidePadding + "' alt='' height='1' src='images/transparent.gif'></td>");
    document.write("                </tr>");
    document.write("                <tr>");
    document.write("                    <td width='" + outsidePadding + "'> ");
    document.write("                        <img width='" + outsidePadding + "' alt='' src='images/transparent.gif'>");
    document.write("                    </td>");
    document.write("                    <td width='1' class='background-shadow' > ");
    document.write("                        <img width='1' alt='' src='images/transparent.gif'>");
    document.write("                    </td>");
    document.write("                    <td class='background-light'> ");
    document.write("                        <table class='background-content' cellSpacing='0' cellPadding='0' width='100%' border='0'>");
    document.write("                            <tr>");
    document.write("                                <td colSpan='3'><img height='" + outsidePadding + "' alt='' src='images/transparent.gif'></td>");
    document.write("                            </tr>");
    if (heading)
    {
        document.write("                            <tr>");
        document.write("                                <td width='" + outsidePadding + "'><img width='" + outsidePadding + "' alt='' src='images/transparent.gif'></td>");
        document.write("                                <td class='channel-title'>" + heading + "</td>");
        document.write("                                <td width='" + outsidePadding + "'><img width='" + outsidePadding + "' alt='' src='images/transparent.gif'></td>");
        document.write("                            </tr>");
        document.write("                            <tr>");
        document.write("                                <td width='" + outsidePadding + "'><img height='1' width='" + outsidePadding + "' alt='' src='images/transparent.gif'></td>");
        document.write("                                <td class='background-dark'><img height='1' alt='' src='images/transparent.gif'></td>");
        document.write("                                <td width='" + outsidePadding + "'><img height='1' width='" + outsidePadding + "' alt='' src='images/transparent.gif'></td>");
        document.write("                            </tr>");
    }
    document.write("                            <tr>");
    document.write("                                <td width='" + outsidePadding + "'><img height='1' width='" + outsidePadding + "' alt='' src='images/transparent.gif'></td>");
    document.write("                                <td class='channel-table-row-even'><div align='center'>");
}

function printEndParagraph(outsidePadding)
{
    if (!outsidePadding) outsidePadding = 10;
    document.write("                                </div></td>");
    document.write("                                <td width='" + outsidePadding + "'><img height='1' width='" + outsidePadding + "' alt='' src='images/transparent.gif'></td>");
    document.write("                            </tr>");
    document.write("                            <tr>");
    document.write("                                <td colSpan='3'><img height='" + outsidePadding + "' alt='' src='images/transparent.gif'></td>");
    document.write("                            </tr>");
    document.write("                        </table>");
    document.write("                    </td>");
    document.write("                    <td width='1' class='background-shadow' ><img width='1' alt='' src='images/transparent.gif'></td>");
    document.write("                    <td class='background-med' width='1'><img width='1' alt='' height='1' src='images/transparent.gif'></td>");
    document.write("                    <td width='" + outsidePadding + "'><img width='" + outsidePadding + "' alt='' src='images/transparent.gif'></td>");
    document.write("                </tr>");
    document.write("                <tr>");
    document.write("                    <td width='" + outsidePadding + "'><img width='" + outsidePadding + "' alt='' height='1' src='images/transparent.gif'></td>");
    document.write("                    <td class='background-shadow' colSpan='3' ><img alt='' width='1' height='1' src='images/transparent.gif'></td>");
    document.write("                    <td class='background-med' width='1'><img width='1' alt='' height='1' src='images/transparent.gif'></td>");
    document.write("                    <td width='" + outsidePadding + "'><img width='" + outsidePadding + "' alt='' height='1' src='images/transparent.gif'></td>");
    document.write("                </tr>");
    document.write("                <tr>");
    document.write("                    <td width='" + outsidePadding + "'><img width='" + outsidePadding + "' alt='' height='1' src='images/transparent.gif'></td>");
    document.write("                    <td class='background-med' colSpan='3' ><img alt='' width='1' height='1' src='images/transparent.gif'></td>");
    document.write("                    <td class='background-med' width='1'><img width='1' alt='' height='1' src='images/transparent.gif'></td>");
    document.write("                    <td width='" + outsidePadding + "'><img width='" + outsidePadding + "' alt='' height='1' src='images/transparent.gif'></td>");
    document.write("                </tr>");
    document.write("            </table>");
    document.write("            </td></tr></table>");
}

function printFooter()
{
    document.write("            <table cellSpacing='0' cellPadding='0' width='100%' border='0'>");
    document.write("                <tr>");
    document.write("                    <td><img width='50' alt='' height='1' src='images/transparent.gif'></td>");
    document.write("                    <td width='100%' class='background-shadow'><img alt='' height='1' src='images/transparent.gif'></td>");
    document.write("                    <td><img width='50' alt='' height='1' src='images/transparent.gif'></td>");
    document.write("                </tr>");
    document.write("                <tr>");
    document.write("                    <td><img width='50' alt='' height='1' src='images/transparent.gif'></td>");
    document.write("                    <td width='100%' class='background-med'><img alt='' height='1' src='images/transparent.gif'></td>");
    document.write("                    <td><img width='50' alt='' height='1' src='images/transparent.gif'></td>");
    document.write("                </tr>");
    document.write("                <tr>");
    document.write("                    <td colspan='3'>");
    document.write("                        <table cellSpacing='5' cellPadding='5' width='100%' border='0'>");
    document.write("                            <tr>");
    document.write("                                <td class='label' align='center'>");
    document.write("                                    Copyright © <a href='mailto:ecoreyelias@yahoo.com'>MoreProofs.com</a><br>");
    //document.write("                                    This Site is powered by © <a href='mailto:ecoreyelias@yahoo.com'>MoreProofs.com</a>");
    document.write("                                </td>");
    document.write("                            </tr>");
    document.write("                        </table>");
    document.write("                    </td>");
    document.write("                </tr>");
    document.write("            </table>");
}

