// JavaScript Document
function resizeApp(){//用于自适应高度处理
	var bodyHeight  =  document.documentElement.clientHeight;
	if( bodyHeight - 50 > 0){
		document.getElementById("contain").style.height = bodyHeight  - 50 + "px" ;
	}
}
