function resize() {
  		var clientWidth = document.all?document.documentElement.clientWidth:window.innerWidth;
  		var clientHeight = document.all?document.documentElement.clientHeight:window.innerHeight;
  	    var mapDiv = document.getElementById("main");
	    mapDiv.style.width = ((t = clientWidth - 206) >= 0 ? t : 0) + "px";
	    mapDiv.style.height = ((t = clientHeight - 51) >= 0 ? t : 0) + "px";
			
  	    var legendDiv = document.getElementById("legend");
	    legendDiv.style.left = ((t = clientWidth - 204) >= 0 ? t : 0) + "px";
		legendDiv.style.visibility = "visible";

  	    var adDiv = document.getElementById("ad");
	    adDiv.style.left = ((t = clientWidth - 204) >= 0 ? t : 0) + "px";
	    adDiv.style.height = ((t = clientHeight - 317) >= 0 ? t : 0) + "px";
		adDiv.style.visibility = "visible";

 	    var episodesDiv = document.getElementById("episodes");
	    episodesDiv.style.left = ((t = clientWidth - 204) >= 0 ? t : 0) + "px";
		episodesDiv.style.visibility = "visible";    
}