function onw(file, title, width, height) {
	var win = window.open(file, title, 'toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,width=' + width + ',height=' + height + ',dependent=yes');
	if (win)
		win.focus();
	return win;
}

function mailform(elem) {
	var win=onw(elem.href, 'Kontakt', 500, 480);
	return false;
}

function jump() {
	var sel = document.getElementById('quickjump');
	if (sel) {
		window.location.href = sel.options[sel.selectedIndex].value;
	}
}

