<!--
	browserName = navigator.appName;
	browserVer = parseInt(navigator.appVersion);
	var msie4 = (browserName == "Microsoft Internet Explorer" && browserVer >= 4);
	if ((browserName == "Netscape" && browserVer >= 3) || msie4 || browserName=="Konqueror") {version = "n3";} else {version = "n2";}
	
	
function openPic(url,winName,winParams)	{
		var theWindow = window.open(url,winName,winParams);	
		if (theWindow)	{theWindow.focus();}
	}
	function over(name,imgObj)	{
		if (version == "n3" && document[name]) {document[name].src = eval(name+"_h.src");}
		else if (imgObj)	{imgObj.src = eval(name+"_h.src");}
	}
	function out(name,imgObj)	{
		if (version == "n3" && document[name]) {document[name].src = eval(name+"_n.src");}
		else if (imgObj)	{imgObj.src = eval(name+"_n.src");}
	}


function openPictureWindow(imageName,imageWidth,imageHeight,alt) { 
	var myWidth = imageWidth;
	var myHeight = imageHeight;
	if (screen.width < imageWidth) {
	var myWidth = (screen.width-100);
	var myLeft = 80;
	}
	if (screen.height < imageHeight) {
	var myHeight = (screen.height-100);
	var myTop = 50;
	}
	if (screen.width < (imageWidth) || screen.height < (imageHeight)){

	newWindow = window.open("","newWindow","width="+myWidth+",height="+myHeight+",scrollbars=yes,resizable=yes,left="+myLeft+",top="+myTop)
	}else{
	var myLeft = (screen.width-imageWidth)/2;
   	var myTop = (screen.height-imageHeight)/2;
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",scrollbars=no,left="+myLeft+",top="+myTop)
	}	
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">'); 
	newWindow.document.write('<img src=\"'+imageName+'\" width='+imageWidth+' height='+imageHeight+' alt=\"'+alt+'\">');
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}

function click (e) { 
  if (!e) 
    e = window.event; 
  if ((e.type && e.type == "contextmenu") || (e.button && e.button == 2) || (e.which && e.which == 3)) { 
    if (window.opera) 
      window.alert("Sorry: Diese Funktion ist deaktiviert."); 
    return false; 
  } 
} 
if (document.layers) 
  document.captureEvents(Event.MOUSEDOWN); 
document.onmousedown = click; 
document.oncontextmenu = click; 

// -->
