function setRightBox() {
			if (document.getElementById) {
				var isIE = false;	
				var agt=navigator.userAgent.toLowerCase();
				var is_ie     = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));
				if(document.all && is_ie){
					isIE = true;
				}
				
				var greyHeight = document.getElementById('newsPicture').offsetHeight;
				var contHeight = document.getElementById('title').offsetHeight+document.getElementById('header').offsetHeight-15;
				
				
				if(greyHeight<contHeight){
					var grey=document.getElementById('newsPicture');
					grey.style.height = contHeight+'px';				
				}
			}
		}
		window.onload = function() {
			setRightBox();
		}
