<!--
//	__________________________________________
//	wTb-e = JavaScripts PORTALE englisch
//	update: 31/10/2003
//	ŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻ
if(top.frames.length > 0)	top.location.href=self.location; 

function disableSelection(target){
	if(typeof target.onselectstart!="undefined")	target.onselectstart=function(){return false} //IE route
	else if (typeof target.style.MozUserSelect!="undefined")	target.style.MozUserSelect="none" //Firefox route
	else						target.onmousedown=function(){return false} //All other route (ie: Opera)
	target.style.cursor = "default"
}
function textCounter(field,cntfield,maxlimit) {
	if (field.value.length > maxlimit)	field.value = field.value.substring(0, maxlimit);
	else				cntfield.value = maxlimit - field.value.length;
}
function show(Bild){
	if(document.getElementById){
		document.getElementById(Bild+"_off").style.visibility = "hidden";
		document.getElementById(Bild).style.visibility = "visible";
		document.getElementById(Bild).style.display = "block";
	}
}
function hide(Bild){
	if(document.getElementById){
		document.getElementById(Bild+"_off").style.visibility = "visible";
		document.getElementById(Bild).style.visibility = "hidden";
		document.getElementById(Bild).style.display = "none";
	}
}
function help(Datei, hoch, breit){
	detail = window.open(Datei, "wThlp", "height="+hoch+", width="+breit+", left=15, top=15, dependent=yes, menubar=no, resizable=yes, scrollbars=yes, status=no, toolbar= no");
	detail.focus();
}
function noclick(scx){
	var doh = "\n Die WebTekten \n The WebTects \n Les WebTectes \n    I WebTetti \n  Os WebTetos \n Los WebTectos"; 
	if (navigator.appName == "Netscape" && scx.which == 3){
		alert(doh); return false;
	}
	if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2){
		alert(doh); return false;
	}
}
document.onmousedown = noclick
//
-->

