<!--
//Copyright 2003 Ronny Adsetts (ronny@amazing-internet.net)

function setAttr(obj, attr, value) {
	el =  bw.dom?document.getElementById(obj):bw.ie4?document.all[obj]:0;
	if (el) {
		eval('el.style.' + attr + ' = value');
	}
}

//-- > 
