function click()
{
  if (event.button==2)
  {
    alert('Diese Internetinhalte können Sie leider nicht mit der rechten Maustaste bedienen!')
  }
}

document.onmousedown=click

function jahr()
{
  var d = new Date();
  var dj = d.getYear();

  if(dj < 999) dj+=1900;
  
  // Weil Frontpage Formatierung rücksetzt:
  document.write("<small>");
  document.write(dj);
  document.write("</small>");
}

function PopupFenster(file)
{
  F = window.open(file,"Popup","width=530,height=420,menubar=no,status=no");
}

function EnlargeImage(url,width,height)
{
	windeye=window.open(url,'Enlarged_Screenshot',
	'status=no,toolbar=no,location=no,menu=no,resizable=no,width=' + 
	width + ',height=' + height + ',scrollbars=no,topmargin=2,leftmargin=2');
}
