function headBlock()
{
    document.write("<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\">\n");
    //document.write("<meta name=\"description\" content=\"George Keshek\">\n");
    //document.write("<meta name=\"keywords\" content=\"printing\">\n");
    document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"style.css\">\n");
    document.write("<script type=\"text/javascript\" src=\"scripts/tooltip.js\"></script>\n");
    document.write("<script type=\"text/javascript\" src=\"scripts/random.js\"></script>\n");
}

function footer()
{
    document.write("<br><br><br><div id=\"footer\" style=\"background: transparent; clear: both;\">\n");
    document.write("<a style=\"text-decoration: none; color: darkgray;\" target=\"_blank\" href=\"http://empower800.com\" onmouseover=\"doTooltip(event, 'empower800')\" onmouseout=\"hideTip();\" >\n");
    document.write("Website Maintained by Empower Internet Services\n");
    document.write("</a>\n");
    document.write("</div>\n");
    document.write("<div id='empower800' style=\"z-index: 100; position: absolute; display: none; font-size: 10px; color: white; background-color: red; xheight: 100px; width: 100px; padding: 10px;\">\n");
    document.write("<img src=\"images/empower.jpg\">\n");
    document.write("Empower Internet Services is dedicated to enabling everyone to use the internet\n");
    document.write("</div>\n") ;
    analytics("UA-4243903-3");
}

function analytics(key)
{
    var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
    document.write("\n<script src=\""+gaJsHost+"google-analytics.com/ga.js\" type=\"text/javascript\"></script>\n");
    document.write("<script type=\"text/javascript\">\n" ) ;
    document.write("if( typeof(_gat)=='object' ) {\n" ) ;
    document.write("var pageTracker = _gat._getTracker(\""+key+"\");\n" ) ;
    document.write("pageTracker._initData();\n" ) ;
    document.write("pageTracker._trackPageview();\n" ) ;
    document.write("}\n" ) ;
    document.write("</script>\n" ) ;
}

//-- do not display this div
function noDisplayDiv(szDivId)
{
    if (document.getElementById) { // DOM3 = IE5, NS6
        document.getElementById(szDivId).style.display = 'none';
    }
    else {
        if (document.layers) { // Netscape 4
            document.szDivId.display = 'none';
        }
        else { // IE 4
            document.all.szDivId.style.display = 'none';
        }
    }
} 

//-- do display this div
function yesDisplayDiv(szDivId)
{
    if (document.getElementById) { // DOM3 = IE5, NS6
        document.getElementById(szDivId).style.display = '';
    }
    else {
        if (document.layers) { // Netscape 4
            document.szDivId.display = '';
        }
        else { // IE 4
            document.all.szDivId.style.display = '';
        }
    }
} 

//-- mail
function mail( who, subject )
{
    if( who.indexOf('@')!= -1 )
        parent.location.href='mailto:'+who+'?subject='+subject;
    else
        parent.location.href='mailto:'+who+'@gkmarketinggroup.com?subject='+subject;
}


