function noop_c3() {}

function setClass(object, style) {
	object.className = style;
}

function rowOverEffect(object, style) {
  if (object.className == style) object.className = 'moduleRowOver';
}

function rowOutEffect(object, style) {
  if (object.className == 'moduleRowOver') object.className = style;
}

function showInfo(n) {
	if (document.getElementById('info' + n)) {
		o = document.all ? document.all['info' + n].style : document.getElementById('info' + n).style;
		otd = document.all ? document.all[n] : document.getElementById(n);
	
		o.visibility = "visible";
		o.top = otd.offsetTop + 0;
		o.left = otd.offsetLeft + 30;
	}
}

function hideInfo(n) {
	if (document.getElementById('info' + n)) {
		o = document.all ? document.all['info' + n].style : document.getElementById('info' + n).style;
		o.visibility = "hidden";
	}
}

function positionPicture() {
	window.setInterval("positionPicture2()", 100);
}

function positionPicture2() {
	if (document.getElementById('pic_anrede0')) {
		o = document.all ? document.all['pic_anrede0'].style : document.getElementById('pic_anrede0').style;
		otd = document.all ? document.all['anrede0'] : document.getElementById('anrede0');
	
		o.top = otd.offsetTop - 20;
		o.left = otd.offsetLeft + 254;
		o.visibility = "visible";
	}
}
