function new_window (file) {
	win = window.open(file,"NewWindow","width=800,height=500,scrollbars=yes,resizable=yes");
}

function askDelete (text) {
	return confirm("Soll " + text + " wirklich gelöscht werden?");
}

function mouseOver(graphicname, graphicfile, statustext) {
	graphicname.src = "http://www.thomasblinn.de/pictures/" + graphicfile;
	window.status = statustext;
	return true;
}

function mouseOut(graphicname, graphicfile) {
	graphicname.src = "http://www.thomasblinn.de/pictures/" + graphicfile;
	window.status = "";
	return true;
}
