function show_email() {
	new Ajax.Updater('thePopUpPane', '/email.php', {
		onSuccess: function(trans) {
			$('thePopUp').style.height = '435px';
			Effect.Appear('thePopUp', { duration:.5 } );
			$('overlay').style.height = document.viewport.getHeight() + 'px';
			Effect.Appear('overlay', {duration:.5, from:0.0, to:0.5});
		}
	});
	
	/*var win = new Window({url: "/email.php", className: "dialog", width:350, height:400, zIndex: 100, resizable: true, title: "Email Updates", showEffect:Effect.BlindDown, hideEffect: Effect.SwitchOff, draggable:true, wiredDrag: true}) ;
	//﻿win.setStatusBar("Status bar info"); 
	win.showCenter();*/
};

function show_donate() {
	new Ajax.Updater('thePopUpPane', '/donate.php', {
		onSuccess: function(trans) {
			$('thePopUp').style.height = '435px';
			Effect.Appear('thePopUp', { duration:.5 } );
			$('overlay').style.height = document.viewport.getHeight() + 'px';
			Effect.Appear('overlay', {duration:.5, from:0.0, to:0.5});
		}
	});
};

function fade_message(target) {
	Effect.Fade(target, { duration:.5 } );
	Effect.Fade('overlay', { duration:.5, from: 0.5,  to: 0.0});

};