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 += 10;	
		
		if (navigator.appName.indexOf("Explorer") != -1) { hoehe += 25; }
		else { hoehe += 45; } // alle anderen
		
    	img = window.open('/zoom.php?image='+name,fenster,'width='+weite+',height='+hoehe+',status=no,menubar=no,locationbar=no,screenX='+xpos+',screenY='+ypos+',scrollbars=no');
		img.resizeTo(weite,hoehe);
		img.focus()
} 

function openPopup(name,weite,hoehe,titel){

		img = window.open('/zoom.php?image='+name,'fenster','width='+weite+',height='+hoehe+',titel,status=no,menubar=no,locationbar=no,scrollbars=no');
		img.resizeTo(weite,hoehe);
		img.focus()
		
	}
