function saveTest(categoryID){
    Ext.MessageBox.show({
        msg: 'Lütfen bekleyiniz,testiniz değerlendiriliyor...',
        progressText: 'Bağlanıyor...',
        width:400,
        wait:true,
        icon:'ext-mb-download', //custom class in msg-box.html
        animEl: 'mb7'
    });
	
	var url="online_test.php?progress=saveTest";
	Ext.Ajax.request({url: url,
						form:'frmOnlineTest',
	   					success: saveTestComplete.createDelegate(null, [categoryID], true)
					});
}

function saveTestComplete(request,response,categoryID){
	Ext.MessageBox.hide();
	var response=parseResponseText(request.responseText);
	if (response.jsonStr!=""){
		var o = Ext.decode(response.jsonStr);
		if (o["js"]!=null) eval(o["js"]);
	}
	
	queryReport(categoryID)
}
