//
// Javascript fix for the height of the menu-div
// MSIE 5.x and 6.x aren't displaying it well if the height
// is set to 100%
//

function fix_leftmenu()
{
	document.getElementsByTagName("body")[0].style.background = "url('./style/image/ie56_bgfix.jpg') repeat-y 0px 0px";
	
	fix_bottomimage();
}

function fix_bottomimage()
{
	//document.getElementById("ecg_picture_msie56").style.visibility = "visible";
}

//
// Hook up into the event system
//
window.onload = fix_leftmenu;
window.onscroll = fix_bottomimage;