$(document).ready(function() {
	$('#txt_phone').keypress(function(event) {
		if (event.which == 13) submitfrm('sendsms');
	});
	$('#txt_phone').focus(function(event) {
		$(this).val(function(i,v) {
			return v.replace(/x/g,'');
		});
	});
	$('#btn_oper').click(function(event) {
		submitfrm('defineoper');
	});
	$('#btn_sendsms').click(function(event) {
		submitfrm('sendsms');
	});
	$('#a_login').click(function(event) {
		$(this).hide();
		$('#loginfrm').show();
		$('#loginfrm :input[name=login]').focus();
	});
	$('#sel_addrbook').change(function(event) {
		$('#txt_phone').val($(this).val());
	});
});
function submitfrm(action) {
	$('#submitfrm :input[name=a]').val(action);
	$('#submitfrm :input[name=phone]').val($('#txt_phone').val());
	$('#submitfrm').submit();
}

