function fixmail(linkobject,address,separator,dot,at){
	tab = address.split(separator);
	real = tab[0];
	for(index = 1; index < tab.length; index++){
		if(index % 2 == 1){
			if(tab[index] == dot){
				real += ".";
			}
			else if( tab[index] == at){
				real += "@";
			}
		}
		else{
			real += tab[index];
		}
	}
		
	linkobject.href = "mailto:" + real;
}