function setHeightLeftBox() {
//Sets Height of imagebox to same as right part of articleview
									var right = document.getElementById("right");
									var rightHeight = right.offsetHeight;
									var left = document.getElementById("article_image");
									left.style.height = rightHeight-2+"px";
								}

