function valign() {

	if(!(navigator.userAgent.match(/iPhone/i)) || !(navigator.userAgent.match(/iPod/i))) {
		var height = document.documentElement.clientHeight+"px";
		//var height = screen.height;
		//alert("height:  " + height);
		document.getElementById('outerContainer').style.height = height;
	}

}

