function showPopup(){
	$.get('popup.php', function(data) {
  		$('#popupholder').html(data).fadeIn(1000);
  		$('#centerEverything').animate({
    		opacity: 0.3},1000)
		populatedropdown('daydropdown', 'monthdropdown', 'yeardropdown', 0)
});
}
function clickFunction()
{

$('#popupholder').fadeOut(1000);
$('#centerEverything').animate({
    		opacity: 1},1000)

}