<!--

function noemailspam(adrs,dmain,nme,clss) {      	
    // Function made by TheHPage DOT com
    
    // ### MAKE VARS ###
    var first = 'ma';
    var second = 'il';
    var third = 'to:';
    
    // ### MAILTO-PART ###
    ausgabe = '<a href="';
    ausgabe = ausgabe+first+second+third;
    ausgabe = ausgabe+adrs+'&#64'+dmain;
    ausgabe = ausgabe+'">';
    
    // Check: Insert Style-Class? PART 1
    if(clss != ''){
        ausgabe = ausgabe+'<span class="'+clss+'">';    
    }
    
    // ### Check: Show E-Mail or Name? ###
    if(nme != ''){
        ausgabe = ausgabe+nme;
    } else {
        ausgabe = ausgabe+adrs+'&#64'+dmain;
    }    
    
    // Check: Insert Style-Class? PART 2
    if(clss != ''){
        ausgabe = ausgabe+'</span>';
    }
    
    // ### FINISH IT ###    
    ausgabe = ausgabe+'<\/a>';
    document.write(ausgabe);
}  

function bildanzeigen(fenster,name,weite,hoehe) {

		var xpos = screen.availWidth/2 - (weite/2);
		var ypos = screen.availHeight/2 - (hoehe/2);
		
		weite += 6;	
		
		if (navigator.appName.indexOf("Explorer") != -1) { hoehe += 10; }
		else { hoehe += 45; } // alle anderen
		
    img = window.open('/zoom.php?image='+name,fenster,'width='+weite+',height='+hoehe+',menubar=no,locationbar=no,screenX='+xpos+',screenY='+ypos+',scrollbars=no');
		img.resizeTo(weite,hoehe);
		img.focus()
} 

function information() {
    info_win = window.open('http://www.startzeit.com/platzbelegung.php?club=4479&pw=67890','info_win','width=740,height=480,menubar=no,locationbar=no,screenX=50,screenY=50,scrollbars=yes,resizable=no');
	info_win.focus();
}

function calendar() {
    calendar_win = window.open('/go/turniere-kalender_uebersicht.html','kalendar','width=600,height=500,menubar=no,locationbar=no,screenX=50,screenY=50,scrollbars=yes,resizable=no');
	calendar_win.focus();
}

function bildergalerieDetail(url,name,width,height,heightOffset)
{
	height += heightOffset;
	
	var xPos = screen.availWidth/2 - (width/2);
	var yPos = screen.availHeight/2 - (height/2);
	
	width += 6;	
	
	if (navigator.appName.indexOf("Explorer") != -1) {
		height += 10;
	} else {
		height += 45;
	}
	
	imageDetail = window.open(url,name,'width='+width+',height='+height+',menubar=no,statusbar=no,locationbar=no,screenX='+xPos+',screenY='+yPos+',scrollbars=no');
	
	imageDetail.resizeTo(width,height);
	imageDetail.focus();
}



//-->

