//alert('funzt1!');

if (document.layers){ 
	window.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP) 
	window.onmousedown=rightclick; 
	window.onmouseup=rightclick; 

	function rightclick(e) { 
		if (e.which == 3) { 
			// Put right mouse code here 
			alert('Dieses Bildmaterial ist Urheberrechtlich geschützt. Bei Interesse am Bildmaterial kontaktieren Sie uns bitte.\nThis material is copyright protected. Please contact ZinCo.'); 
			return false; 
		} else { 
			return true; 
		}
	}
}

if (document.all) { 
	function click() { 
		if (event.button==2) { 
			alert('Dieses Bildmaterial ist Urheberrechtlich geschützt. Bei Interesse am Bildmaterial kontaktieren Sie uns bitte.\nThis material is copyright protected. Please contact ZinCo.') 
		}

		if (event.button==3) { 
			alert('Dieses Bildmaterial ist Urheberrechtlich geschützt. Bei Interesse am Bildmaterial kontaktieren Sie uns bitte.\nThis material is copyright protected. Please contact ZinCo.')} 
		}
	document.onmousedown=click 
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


