function toggleItem(id, prefix) {
	if(document.getElementById(prefix + '_' + id).style.display == "none") {
		document.getElementById(prefix + '_' + id).style.display = "";
		document.getElementById(prefix + '_pic_' + id).alt = "Ausklappen!";
		document.getElementById(prefix + '_pic_' + id).src = "./images/misc/minus.gif";
	} else {
		document.getElementById(prefix + '_' + id).style.display = "none";
		document.getElementById(prefix + '_pic_' + id).alt = "Einklappen!";
		document.getElementById(prefix + '_pic_' + id).src = "./images/misc/plus.gif";
	}
}

function addText(code, el) {
	nav = navigator.userAgent.toLowerCase();
	e = document.getElementById(el);
	if((nav.indexOf("msie") != -1)  && (nav.indexOf("opera") == -1)) {
		e.value += code;
	} else {
		x = e.value.substr(0, e.selectionStart);
		x += code;
		x += e.value.substr(e.selectionStart, e.textLength);
		e.value = x;
	}
	e.focus();
}

function ViewImage(bild, w, h, name) {
	window.open(bild, name, "width=" + w + ", height=" + h);
}

function PreviewCountry(pic) {
	document.getElementById('land_bild').src = './images/flaggen/' + pic;
}

function smilieWindow() {
	window.open('smilies.php', 'Smilies', 'width=350, height=600');
}

function flaggenWindow() {
	window.open('flaggen.php', 'Flaggen', 'width=350, height=666');
}
function awardsWindow() {
	window.open('list_awards.php', 'Awards', 'width=350, height=350');
}