function openWin(url, w, h)
{
	winWidth = w;
	winHeight = h;
	winLeft = (screen.width - winWidth) / 2;
	winTop = (screen.height - winHeight - 10) / 2;
	window.open(url, "ShowPic", "width=" + winWidth + ", height=" + winHeight + ", left=" + winLeft + ", top=" + winTop + ", dependent=yes");
}
function status_show(text)
{
  window.status = text;
  return true;
}
window.defaultStatus = "© 2004 Tischlerei Scherr";
