/**
 * flyer.js
 * Adam Shannon
 * 2010-01-02
 */
 
function show_banner() {
	var image = document.createElement('img');
		image.setAttribute('onclick', 'destroy()');
		image.title = 'Click to hide this image.';
		image.src = 'images/swapmeet.png';
		image.id = 'popup';
		
	document.getElementsByTagName('body')[0].appendChild(image);
}

function destroy() {
	var image = document.getElementById('popup');
		document.getElementsByTagName('body')[0].removeChild(image);
}