function positionIt(obj) {
	obj.style.position = 'fixed';
	if (navigator.userAgent.indexOf("MSIE") != -1) {
		obj.style.position = 'absolute';
		}
	else if (navigator.userAgent.indexOf("Firefox") != -1) {
		obj.style.position = 'fixed';
		}
	obj.style.visibility = 'visible';
	}
