function showPopup(){
	$.get('popup.php', function(data) {
        var i = setInterval(function(){

            $('#popupholder').html(data).fadeIn(1000);

            $('#centerEverything').animate({
                opacity: 0.3
            }, 1000);
            populatedropdown('daydropdown', 'monthdropdown', 'yeardropdown', 0);

            clearInterval(i);

        }, 20000);
});
}
function clickFunction()
{

$('#popupholder').fadeOut(1000);
$('#centerEverything').animate({
    		opacity: 1},1000)

}
