function resize(){
			var windowHeight = 0;
			if (typeof(window.innerHeight) == 'number') {
				windowHeight = window.innerHeight;
			}
			else {
				if (document.documentElement && document.documentElement.clientHeight) {
					windowHeight = document.documentElement.clientHeight;
				}
				else {
					if (document.body && document.body.clientHeight) {
						windowHeight = document.body.clientHeight;
					}
				}
			}
//			alert(document.getElementById("Container").clientHeight);
//			if (windowHeight > 794) {
//				document.getElementById("Container").style.height = windowHeight.toString() + 'px';
//				} else {document.getElementById("Container").style.height = '794px';}
			if (windowHeight > document.getElementById("Container").clientHeight) {
				document.getElementById("Container").style.height = windowHeight.toString() + 'px';
			}
}