<!--

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) {
	
// Version 1.2 vom 07.02.2006

		var g_fIsSP2 = false; //Für IE mit SP2.
		var xpos = screen.availWidth/2 - (weite/2);
		var ypos = screen.availHeight/2 - (hoehe/2);
		weite += 6;	
		
		if (navigator.appName.indexOf("Explorer") != -1) { 
			
	 		hoehe += 29; 	
	 		status = "no";
	 
	 		g_fIsSP2 = (window.navigator.userAgent.indexOf("SV1") != -1); //SP2?
   				if (g_fIsSP2)
   					{
   						hoehe += 27; //Für IE mit SP2. Kann Statusbar nicht ausblenden
   						status = "yes";
   					}
		}
		else { hoehe += 45; status = "yes"; } // alle anderen
		
    img = window.open('/zoom.php?image='+name,fenster,'width='+weite+',height='+hoehe+',menubar=no,locationbar=no,statusbar='+status+',screenX='+xpos+',screenY='+ypos+',scrollbars=no');
		img.resizeTo(weite,hoehe);
		img.focus()
} 


function info_popup(datei) {
    window.open(datei,'Info-Fenster','width=550,height=450,menubar=no,locationbar=no,screenX=0,screenY=0,scrollbars=yes');
}



//-->
