<!--

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);
}  



// Menue

//window.onload=montre;
function montre(id, id_menu) {
    var d = document.getElementById(id);
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) {
		    document.getElementById('smenu'+i).style.display='none';
		}
	}
    if (d) {//mouseover
        d.style.display='block';
        var oElem = document.getElementById(id_menu);
        if (oElem) {
            oElem.className = 'menu_hover';
        }
    } else {//mouseout
        var oElem = document.getElementById(id_menu);
        if (oElem) {
            oElem.className = '';
        }        
    }
}

function printpreview(){
    var oOpener = window.open(window.location.href+"?printpreview=1", "Printpreview", "width=800,menubar=no,scrollbars=yes");
    //return false;
}



//-->
