				function getSize(){

					if(navigator.userAgent.indexOf("Firefox")>0){
					}
					resizeMap();
				}
				
				function resizeMap(){
					var mapw = document.body.clientWidth;
					var maph = document.body.clientHeight - 118;
					if(navigator.userAgent.indexOf("Firefox")>0){
					var maph = document.body.clientHeight - 166;
					}
					webgis.resize(mapw-500,maph-200);
				}
				
				window.onresize = getSize;