// JavaScript Document

function popWin(URL) {
	window.open(URL, 'popWin', 'toolbar=0, scrollbars=yes, location=0, statusbar=0, menubar=0, resizable=1, width=500, height=640');
}


function flipBox(from, to) {
	document.getElementById(from).style.display = 'none';
	document.getElementById(to).style.display = 'block';
}