/****************************************************************************
 *   Author:吴盈佳 
 *   ReadMe:产品通用js
 *****************************************************************************/

var productObject = {
	"sendSMSIntro":function(bussid,type){
		var mobile = document.getElementById('mobile').value;
		if (mobile == null || mobile == ''){
			alert('请输入手机号码');
			document.getElementById('mobile').focus();
			return;
		}
		if (!checkMobile(mobile)){
			alert('手机号码不正确，请重新输入');
			document.getElementById('mobile').focus();
			return;
		}
		var engine = new Swato.Engine();
		$('bnt_send_sms').value = '短信发送中';
		$('bnt_send_sms').disabled = 'true';
		engine.call("productAction.sendSmsIntro",[mobile,bussid,type], {
				onSuccess:function(r){
					alert('短信已发送');
					$('bnt_send_sms').value = '点击发送';
					$('bnt_send_sms').disabled = '';
				},
				onError:function(e){
					alert(e);
					$('bnt_send_sms').value = '点击发送';
					$('bnt_send_sms').disabled = '';
				}
			});
	}
	,
	"initMobileInput":function(){
		$('div-body-ifm').style.height='40px';
		$('fd_contentup').style.width='400px';
		$('fd_contentup').style.height='110px';
	}
	,"resetDiv":function(){
		$('div-body-ifm').style.height='325px';
		$('fd_contentup').style.width='';
		$('fd_contentup').style.height='';
	}
}




