function click (e) {
  if (!e)
    e = window.event;
  if ((e.type && e.type == "contextmenu") || (e.button && e.button == 2) || (e.which && e.which == 3)) {
    return false;
  }
}
if (document.layers)
  document.captureEvents(Event.MOUSEDOWN);

document.onmousedown = click;
document.oncontextmenu = click;



function NeuFenster(url, width, height) {

	 if(width > 800)
	 {
		width = 800;
		height = 600;
	 }
	 MeinFenster = window.open("/customer/templates/pressebild.php?imgsrc="+url, "Pressebild", "width="+width+",height="+height+",scrollbars=yes,menubar=no,location=no");
	 MeinFenster.focus();
	}

