
// Ask user on chack delete option
function initEvent() {
	var _oPopupBox = window.oPopupBox;
	$(".delete").click(function () {
		_oPopupBox.popupConfirm(this, "Вы действительно хотите удалить?");
		return false;
	});
}

// Display auth message if they exists
function authMessage() {	if (auth_message) {		window.oPopupBox.popupAlert(auth_message);	}
}