
function popUp(file,width,height) {
	
	height = parseInt(height);
	width = parseInt(width);
	popup = window.open('/rtc-popUp/'+file,'popup','width='+width+',height='+height);
}

function setStatus(str) {
	window.status = str;
}




document.oncontextmenu = checkClick;

function checkClick(event) {
	if (! event) {
		event = window.event;
	}
	if (event.target) {
		elem = event.target;
	} else {
		elem = event.srcElement;
	}
	
	if(elem.nodeName == 'IMG') {
		alert('© Copyright 2005, Nessie Verein Wasserspaß');
		return false;
	}
	return true;
}