function txt2img(tag, cssClass, src) {
	var elmnts = document.getElementsByTagName(tag);
	for (var i = 0; i < elmnts.length; i++) {
		node = elmnts[i];
		if (node.className != cssClass) {
			continue;
		}
		var img = new Image();
		img.src	= src + "?id=" + cssClass + "&text=" + node.innerHTML;
		img.alt = node.innerHTML;
		node.parentNode.replaceChild(img, node)		// For some odd reason, this reduces the elmnts.length by 1 (?!)
		i--;
	}
}

function trace(x) { setTimeout(function(){throw x}, 0) }


function dienstGo () {
	if (document.jumpbox.select1.options[document.jumpbox.select1.selectedIndex].value != 'none') {
		location= "http://stuff.mediamonks.net/quinten/spnetworks/" + document.jumpbox.select1.options[document.jumpbox.select1.selectedIndex].value;	
	}
}