function init() {
	chkSideBarWidth();
}
function chkSideBarWidth() {
	if (document.getElementById('bodyFrame').getAttribute('cols') != '221,*') document.getElementById('bodyFrame').setAttribute('cols', '221,*');
}

function chkBodyHeight() {
	//hoogte sidebar
	sb=window.frames['sidebar'].document;
	sbh=Math.max(sb.documentElement.scrollHeight, sb.getElementsByTagName('html')[0].scrollHeight);
	//hoogte content
	ct=window.frames['content'].document;
	cth=Math.max(ct.documentElement.scrollHeight, ct.getElementsByTagName('html')[0].scrollHeight);
	//content even hoog maken gebeurt in css -> hoogte eo_footer is hoog genoeg
	//even ver scrollen
	try {sb.documentElement.scrollTop = ct.documentElement.scrollTop;}
	catch(e) {}
	try {sb.getElementsByTagName('body')[0].scrollTop = ct.getElementsByTagName('body')[0].scrollTop;}
	catch(e) {}
	try {sb.body.scrollTop = ct.body.scrollTop;}
	catch(e) {}
		
	setTimeout('chkBodyHeight()',5);
}
