<!--

function resizeMap() {
	
	if (is.ns) {
	  w = window.innerWidth;
	  h = window.innerHeight;
	}
	if (is.ie) {
		if (document.compatMode && document.compatMode != "BackCompat") {
			w=document.documentElement.clientWidth;
			h=document.documentElement.clientHeight;
		} else {
			w=document.body.clientWidth;
			h=document.body.clientHeight;
		}
	}
	
	
	//alert(w+'.'+h);
	
	document.getElementById('map').style.height=(h-120)+'px';
	
}


//-->
