/*================================================================================================*\
|
|	File:		more-info-popup.js
|
|	Author:		Matthew Lueck
|	Company:	Big Daddy's Chicks
|
|	Version		Date				Description
|	1.0.0		2009-12-19			CSS layout for homepage
|
\*================================================================================================*/

var thisDiv;
var trueTimer;
var falseTimer;

function loadPopup(str) {
	show('more_info_section', true); // Show the overlay.
	show(str, true); // Show the popup.
}

function unloadPopup(str) {
	show(str, false); // Hide the popup.
	show('more_info_section', false); // Hide the overlay.
}

function show(str, bool) {
	// alert("ID: " + str + "\nIs shown? " + bool + "\nDelay: " + delay);
	thisDiv = document.getElementById(str); // Set the the div.
	if (bool == true) { // If true...
		thisDiv.style.display = 'block'; // Show the div.
	} else { // If false...
		thisDiv.style.display = 'none'; // Hide the div.
	}
}
