var MOBILEINTRO = {
	resizeWindow:function(width,height){
		try{
			var idom = document.getElementById("sdo_mobileintro_container");
			idom.style.height = parseInt(height)+"px";
			idom.style.width = parseInt(width) + 20 +"px";
			idom.style.display = "block";
			idom.style.marginTop = "10px";
			idom.style.zIndex = "9999";
			var idom2 = document.getElementById("sdo_mobileintro_container_frame");
			idom2.style.height = parseInt(height)+"px";
			idom2.style.width = parseInt(width)+"px";
			idom2.style.display = "block";
			idom2.style.margin = "0 auto";			
		}catch(e){}
	},
	closeTip:function(){
		try{
			var idom = document.getElementById("sdo_mobileintro_tip");
			idom.style.display="none";
		}catch(e){}
	},
	showTip:function(){
		try{
			var idom = document.getElementById("sdo_mobileintro_tip");
			idom.style.display="block";
		}catch(e){}		
	},
	closeMobileIntro:function(){
		try{
			document.getElementById("sdo_mobileintro_container").style.display="none";
		}catch(e){}
	}
};
