﻿

window.onload = fixheight


function fixheight() {
 var maxH = 0;
 var ids = ["sidecontent","intro-window"];
 
 
 var d = document.getElementById('intro-window')
 var e = document.getElementById('sidecontent')
 

 
if (d.offsetHeight  > e.offsetHeight + 282) {

e.style.height = d.offsetHeight - 282 + "px";
 }
 
}
