
		function setDivHeight() {
			if (parseInt(navigator.appVersion)>3) {
			  
				if (window.innerHeight)  {
					h = window.innerHeight;
				}
				else if (document.documentElement && document.documentElement.clientHeight) { 
					h = document.documentElement.clientHeight;
				} 
					else if (document.body) { // other Explorers
					h = document.body.clientHeight;
				} 
				
				//alert(pageID);
				
				//if ((pageID == "DELICIOUS")||(pageID == "GOOGLEREADER")) {
					h = h -1;
				//}
				
				//alert(h);
				//alert(document.getElementById("container").style.height);
				//alert(document.getElementById("myiframe").height);
								
				document.getElementById("container").style.height= h + "px";
				document.getElementById("myiframe").height= h + "px";
				
	  		}			
		}