function inseratAnzeigen (i, sid) {
	private url;
	url = "index.php?page=inserat_inhalt&i=" + i + "&sid=" + String (sid);
	location.href = url;
}

function rubrikAnzeigen (r, sid) {
	private url;
	url = "index.php?page=rubrik_inhalt&r=" + r + "&sid=" + String (sid);
	location.href = url;
}

function aendereHintergrundFarbe (tr, hover, art) {
	if (art == 0) { // Rubrik-Item
		if (hover == 1) { // Invertieren
			tr.setAttribute('bgcolor', '#FFDDA0', '0');
			tr.style.backgroundColor = '#FFDDA0';
		}
		else {	// wieder normal
			tr.setAttribute('bgcolor', '', '0');
			tr.style.backgroundColor = '';
		}
	}
	else { // Inserat-Item
		if (hover == 1) { // Invertieren
			tr.setAttribute('bgcolor', '#FFDDA0', '0');
			tr.style.backgroundColor = '#FFDDA0';
		}
		else { // wieder normal
			tr.setAttribute('bgcolor', '', '0');
			tr.style.backgroundColor = '';
		}
	}
}

