/*
 * Ext JS 1.1.1 Utility For Accredited Lab Project
 */

function confirmDelete(msg, href) {
	msgBox = Ext.MessageBox.confirm('กรุณายืนยันการลบข้อมูล', msg, function(btn) {
		if(btn == 'yes') {
			window.location.href = href;
		}
	});
};