function setSize() {
    tempHeight = parseInt(document.body.clientHeight)-170; //130 being header+nav bar
    if (document.getElementById('content_container')) {
        document.getElementById('content_container').style.height = tempHeight +"px";
    }
    
    if (document.getElementById('content')) {
        tempFooterWidth = parseInt(document.getElementById('content').clientWidth)-10;
        document.getElementById('container_footer').style.width = tempFooterWidth +"px";
    }
    
    if (document.getElementById('content_welcome')) {
        tempFooterWidth = parseInt(document.getElementById('content_welcome').clientWidth);
    }
}

function subMenu(subMenu) {
    if (document.getElementById(subMenu).style.display == "block") {
        document.getElementById(subMenu).style.display = "none";
    }
    else {
        document.getElementById(subMenu).style.display = "block";
    }
}

function insertFooter() {
    document.getElementById('content').innerHTML += '<div id="container_footer"><h4 class="hidden">Copyright Information</h4>Copyright © 2007 Larson Packaging, Inc. - <a href="legal.html" class="footer_link">Disclaimer</a> - <a href="legal.html" class="footer_link">Privacy Policy</a> - <a href="legal.html" class="footer_link">External Website Links</a> - <a href="legal.html" class="footer_link">Copyright</a></div>';
    if (navigator.appName.indexOf('Microsoft') != -1) {
        setSize();
    }
}

function displayContent(page, category) {
    document.getElementById('content').innerHTML = '<a name="display"></a><h3 class="hidden">Product Information</h3>'+'<div class="content_header left">'+'<a href="#" class="goBack" onClick="window.location.reload(true);">Go Back to '+category+' listing </a></div><div class="content_header right"><a class="goBack" href="#" onclick="viewPDF(\''+page+'\')">View PDF Full Screen</a></div>'+'<iframe src="'+page+'"></iframe>';
    insertFooter();
}

function viewPDF(page) {
    openPDF = window.open(page,"PDFViewer");
    if (document.all) {
        openPDF.resizeTo(screen.availWidth,screen.availHeight);
    }
    else {
        openPDF.moveTo(0,0);
        openPDF.innerWidth = screen.width;
        openPDF.innerHeight = screen.height;
    }
    /*
    openPDF.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
    openPDF.document.write('<html>');
    openPDF.document.write('<head>');
    openPDF.document.write('<title>Larson Packaging, Inc. - Viewing PDF Full Screen</title>');
    openPDF.document.write('<link rel="stylesheet" type="text/css" href="style.css" />');
    openPDF.document.write('<script type="text/javascript" src="javascript.js"></script>');
    openPDF.document.write('</head>');
    openPDF.document.write('<body>');
    openPDF.document.write('<iframe class="PDFViewer" src="'+page+'"></iframe>');
    openPDF.document.write('</body>');
    openPDF.document.write('</html>');
    */
}
