var timg = null;

function loeschen(query) {
	if (window.confirm("wirklich löschen?")) {
		document.location.href=query;
		}
	}
	
function anim(id, imageURL) {
	if (timg != id) {
		imageURL = "images/" + imageURL + ".png";
		if (document.layers) document['pic_'+id].src = imageURL == 'none' ? null : imageURL;
		else if (document.all) document.all['pic_'+id].src = imageURL == 'none' ? 'none' : imageURL;
		else if (document.getElementById) document.getElementById('pic_'+id).src = imageURL == 'none' ? 'none' : imageURL;
		}
	}

function choose_girl(gid) {
	document.sched.gid.value = gid;
	document.sched.submit();
	}
