<!--

function noemailspam(adrs,dmain,nme,clss,extra) {      	
    // 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+'"';
    // extra by r.collet@bauer-kirch.de
    if(extra != ''){
        ausgabe = ausgabe+' '+extra
    }
    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 iconPopup(start) 
{
    icon = window.open("/go/produkte-icons/"+start+".html","icon","width=514,height=620,menubar=no,locationbar=no,scrollbars=no");
    icon.resizeTo(520,620);
    icon.focus();}


//-->