function popup_result_comment(a){$("#dialog").dialog("destroy");$("#dialog").attr("command","result_comment");$("#dialog").html("").css("background","url('styles/images/loading.gif') no-repeat center center");$("#dialog").dialog({title:"Viewing Match #"+a,autoOpen:false,width:750,height:500,modal:true,position:"center",buttons:{Close:function(){$(this).dialog("close")},"Report Match":function(){alert("coming soon. currently, please post the match_id you want to alter and the actual result at the main shoutbox.")}}});$("#dialog").dialog("open");$.get("/popup?page="+$("#dialog").attr("command"),"match_id="+a,function(b,c){$("#dialog").animate({opacity:0},500,function(){$(this).css("background","").html(b).animate({opacity:1},500,function(){main_js_parser()})})})};