
function close_modal( article_id, ajah_url ) {

	var sp = self.parent;
	if (sp.jQuery) { 

		if (ajah_url==null) {
			ajah_url="/?module_class_name=article&article_action=article&article_id="+article_id;
		}

		if (!isNaN(article_id)) {
				sp.tb_remove();
			    sp.$.ajax({
					url: ajah_url,
					dataType: "html",
					type: "GET",
					async: false,
					success: function(html){
						sp.$("#article_box_"+article_id).html( html );
						// sp.tb_init("#article_box_"+article_id); 
						sp.tb_init('a.thickbox'); 
						
					}
				});
		}
		
	}else{
		window.opener.location.reload(); 
		window.close();
	}
}


