$(function(){
	var popup = $('<div></div>').addClass('popup referral').appendTo('body').hide();
	$('<iframe></iframe>').appendTo(popup).attr({ 'height': '92', 'frameborder': '0', 'src' : '/bin/ajax/referral.php' })
	setTimeout(function(){ if ($('.popup.referral').length) $('.popup.referral').fadeIn(1000); });
});

function hide(now) {
	if (now) $('.popup').remove();
	else $('.popup').fadeOut(function(){ $(this).remove(); });
}
