function makelink( name, domain, desc, pre, post ) {
    if ( pre != null && pre != "" )
        document.write( pre );
    
    document.write( '<a href="mailto:' );
    document.write( name + '&#64;' );
    document.write( domain + '">' );
    
    if ( desc != null && desc != "" )
        document.write( desc )
    else
        document.write( name + '&#64;' + domain );
    
    document.write( '</a>' );
    
    if ( post != null && post != "" )
        document.write( post );
}

function color(name) {
	silly=document.getElementById('col_chi').value;
	if (silly!='') {
		document.getElementById(silly).style.borderColor = "#ffffff";
	}
	document.getElementById(name).style.borderColor = "#990000";
	document.getElementById('col_chi').value=name;
	document.getElementById('col_pr').src="./files/colori/"+name+".jpg";
	name1=name.replace("_",". ");
	document.getElementById('col_cod').innerHTML=name1;
}
