/* make pop up area for both sites */

$(document).ready(function(){
	$.post("/check_session.php", {type:'ShowOrNot'}, function(data){
    	if(data==1){
    		$.get("/advert_pop.php", function(data){
    			if(data){
					$.modal(data, {position: [75]});
					$("h1").addClass("pu");
					FLIR.replace( 'h1.pu' , new FLIRStyle({ cFont:'helveticaneue',fixedBaseline:true,realFontHeight: true}) );
				}
			});
    	}
    });
});

function close_popup(){
	$(".sIFR-replaced").show();
	$.modal.close();
}