var SMS = {};
SMS.inited = false;
SMS.init = function(){
	(function(){
		if(this.inited)return;
		this.diy = false;
		this.S = location.href.indexOf('/static/public/')!=-1;
		this.sms_iframe = document.getElementById('sms_iframe');
		if(this.sms_iframe == null){
			this.sms_iframe = document.createElement('iframe');
			this.sms_iframe.id = 'sms_iframe';
			this.sms_iframe.name = 'sms_iframe';
			this.sms_iframe.style.display = 'none';
			document.body.insertBefore(this.sms_iframe, document.body.firstChild);
		}
		var DIY = document.getElementById('SMSDIY');
		if(DIY){
			DIY.onclick = function(){
				SMS.showDiy();
				return false;
			}
		}
		this.inited = true;
	}).call(SMS);
}
SMS.showDiy = function(m){
	if(!this.inited)this.init();
	this.diy = true;
	this.sms_iframe.src = 'http://www.500wan.com/js/public/callJs.html?cmd='+escape((this.S?'parent.':'')+'parent.parent.SMS.showDiy')+'&args='+(+new Date());
	SMS.setInfo(m || trade.getSMSInfo(1));
	if(typeof trade != 'undefined' && trade.graySubmit)trade.graySubmit(false);
}
SMS.show = function(m){
	if(!this.inited)this.init();
	this.diy = false;
	this.sms_iframe.src = 'http://www.500wan.com/js/public/callJs.html?cmd='+escape((this.S?'parent.':'')+'parent.parent.SMS.show')+'&args='+(+new Date());
	SMS.setInfo(m || trade.getSMSInfo(0));
	if(typeof trade != 'undefined' && trade.graySubmit)trade.graySubmit(false);
}
SMS.setHeight = function(m){
	if(!this.inited)this.init();
	this.sms_iframe.src = 'http://www.500wan.com/js/public/callJs.html?cmd='+escape((this.S?'parent.':'')+'parent.parent.SMS.setHeight')+'&args='+m;
	setTimeout(function(){
		var K=20;
		var I = setInterval(function(){
			if(K--<0)return clearInterval(I);
			try{parent.frames['sms_iframe'].document.getElementById('ZH').style.display = ((m == '450px')?'':'none');}catch(e){}
		}, 100);
	}, 600);
}
SMS.filter = ',5,10001,4,8,28,1,9,17,15,10000,';
SMS.setInfo = function(m){
	try{
		var K=20, id=document.getElementById('lotid');
		//logo=(id && SMS.filter.indexOf(','+id.value+',')!=-1)?'/images/trade/alert/logo_jiangxi.gif':'/images/trade/alert/logo_chongqing.gif';
		//if(typeof syydj != 'undefined')logo = '/images/trade/alert/logo_shandong.gif';
		//if(id && id.value=='9')logo = '/images/trade/alert/logo_tianjin.gif';
		var root = SMS.S?top:parent.parent;
		setTimeout(function(){
			var ischase = document.getElementById('ischase');
			try{
				SMS.setHeight((SMS.diy?'443px':((ischase && (ischase.checked || ischase.value==1))?'450px':'362px')));
			}catch(e){}
		}, 800);
		var L = setInterval(function(){
			if(K-- < 0)clearInterval(L);
			try{
				if(SMS.S)root.frames['sms_iframe'].document.lotType = 'zc';
				if(location.href.indexOf('/pages/trade/')!=-1)root.frames['sms_iframe'].document.lotType = 'szc';
				root.frames['sms_iframe'].document.getElementById('info').value = m;
				//root.frames['sms_iframe'].document.getElementById('SMSLogo').src = logo;
			}catch(e){}
		}, 80);
	}catch(e){
		alert('设置短信提示层内容失败.\n原因:'+e.description);
	}
}
if(typeof trade != 'undefined'){
	trade.addInit(SMS.init);
}else{
	setTimeout(function(){
		SMS.init();
	}, 2000);
}

