// redwhiteandbrew.net site_functions.js
// main navigation for site
function BuildNavigation() {
    document.write('<div id="nav"><ul><li><a href="wine.php?p=wine"> Wine </a></li><li><a href="spirits.php?p=spirits"> Spirits </a></li><li><a href="beer.php?p=beer"> Beer </a></li><li><a href="events.php"> Events </a></li><li><a href="../treats/index.php"> Treats </a></li><li><a href="about.php?p=about"> About Us </a></li><li><a href="contact.php"> Contact Us </a></li></ul></div><!--end nav--></div><!--end top-->');

}

// beginning of body, mast content
function BuildMast() {
    document.write('<body><div id="header"><div id="header-inner"><div id="top"><div id="login"><p><a href="admin.php"> Admin </a></p>');
    document.write('</div><!--end login-->');
    document.write('<div id="logo"><a href="index.php"> <img src="../interface/logo.gif" alt="Red, White and Brew" border="0" /> </a></div><!--end logo-->');

}

// footer
function BuildFooter() {
    document.write('<div id="footer">');
    document.write('<p class="footer-nav">');
    document.write('<a href="mailing.php"> Mailing List </a>');
    document.write('</p>');
    document.write('<p>Red, White and Brew | <a href="admin.php">	Admin Login	</a></p>');
    document.write('</div>');
    document.write('<!--end footer-->');
    document.write('</body>');
    document.write('</html>');

}

//
// random sidebar
function BuildSidebar() {
    var rNum = Math.floor(Math.random() * 3);
    //
    if (rNum == 0) {
        document.write('<div class="box"><h3><a href="events.php">Try Our Wine</a></h3><img src="../interface/box_invited.jpg" /><p>Join us at an upcoming event and see what we have to offer.<a class="more" href="events.php">Upcoming events</a>.</p><br /></div>');

    }

    if (rNum == 1) {
        document.write('<div class="box"><h3><a href="mailing.php">Join our Mailing List </a></h3><img src="../interface/box_mailing-list.jpg" /><p>Would you like to join our mailing list? <a class="more" href="mailing.php"> Join our mailing list </a> to find out how.</p><br /></div>');

    }

    if (rNum == 2) {
        document.write('<div class="box"><h3><a href="../treats/index.php"> Tasty Treats </a></h3><img src="../interface/box_try-wine.jpg" /><p>Browse through all of the Tasty Treats in our catalog. <a class="more" href="mailing.php"> Taste all of the treats </a> we have.</p><br /></div>');

    }

}

// Navigation for edit screens
function EditorNav() {
    document.write('<ul class="subnav"><li><a href="e_about.php">About Us</a></li><li><a href="e_contact.php"> Contact Us</a></li><li><a href="e_index.php"> Index</a></li><li><a href="e_spirits.php"> Spirits</a></li><li><a href="e_beer.php"> Beer</a></li><li><a href="e_wine.php"> Wine</a></li><li><a href=\"ecom.php\">Items for sale</a></li><br /><li><a href="javascript:DoMore(\'help.php\',3);">Help</a></li></ul>');

}

// DoMore popups
function DoMore(nURL, windowSize) {
    var pWidth;
    var pHeight;
    var newWindow;

    if (windowSize == 1) {
        pWidth = 320;
        pHeight = 240;

    }

    if (windowSize == 2) {
        pWidth = 640;
        pHeight = 480;

    }

    if (windowSize == 3) {
        pWidth = 800;
        pHeight = 600;

    }

    if (windowSize == 4) {
        pWidth = 1024;
        pHeight = 768;

    }

    newWindow = window.open(nURL, 'More_Info', 'width=' + pWidth + ',height=' + pHeight + ',toolbar=no,location=no,status=no,scrollbars=yes');


}

function UniversalExit() {
    //window.opener='x';window.close();
    window.close();

}

//var divState = null;

function DocInfo(divID, divState) {
	var vDiv = document.getElementById(divID);
	if (divState == 1) {
		vDiv.style.visibility = 'visible';
		vDiv.style.height = "auto";
	} else {
		vDiv.style.visibility = 'hidden';
		vDiv.style.height = "0px";
	}
}

