/*
<!--
window.moveTo(0,0);
window.resizeTo(screen.width,screen.height);
//-->
*/


<!--
function F_openNewBrWindow(theURL,winName,features) { //v1.2 
window.open(theURL,winName,features);
}
// -->


<!--
function bildwechsel(id,url,height,width) {
document.getElementById(id).src=url;
document.getElementById(id).height=height;
document.getElementById(id).width=width;
}
// -->


<!--
function UnCryptMailto(s, shift) {
	var n=0;
	var r="";
	for(var i=0;i<s.length;i++) { 
		n=s.charCodeAt(i); 
		if (n>=8364) {n = 128;}
		r += String.fromCharCode(n-(shift)); 
	}
	return r;
}
function linkTo_UnCryptMailto(s, shift)	{
	location.href=UnCryptMailto(s, shift);
}
// -->



<!--
function getRefToDiv(divID,oDoc) {
	if( document.getElementById ) { return document.getElementById(divID); }
	if( document.all ) { return document.all[divID]; }
	if( !oDoc ) { oDoc = document; }
	if( document.layers ) {
		if( oDoc.layers[divID] ) {
			return oDoc.layers[divID];
		} else {
			for( var x = 0, y; !y && x < oDoc.layers.length; x++ ) {
				y = getRefToDiv(divID,oDoc.layers[x].document);
			}
			return y;
		}
	}
	return false;
}

var zInd = 200;

function upEl(theDiv) {
	if( document.layers ) {
		theDiv = document.layers['id'].document.layers[theDiv];
	} else {
		theDiv = getRefToDiv(theDiv);
	}
	if( !theDiv ) { window.alert( 'Nothing works in this browser.' ); return; }
	if( theDiv.style ) { theDiv = theDiv.style; }
	theDiv.zIndex = zInd; zInd++;
}
// -->
