/*
Popup Show/Hide Script
Author: Brian Hartwell
*/

function togglePopup() {
	var popWin = document.getElementById('popupArea');
	if(popWin.style.display == 'none') {
		popWin.style.display = 'block';
	}
	else {
		popWin.style.display = 'none';
	}
}
