/* make gallery images preview changeable by clicking on these images */
$(document).ready(function(){
	if($.browser.msie && $.browser.version < 7.0){
		$.post("/session.php", {type:'ShowOrNot'}, function(data){
	    	if(data==1){
	    		$.get("/browser_update.php", function(data){
					$.modal(data);
				});
	    	}
	    });
    }
});

function close_popup(){
	$.modal.close();
}

