/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function codemail(m,klasa,style,image) {
	var nm=''; l = m.length; for(i=0;i<l;i+=2) { nm+=m.charAt(i); }
	if(klasa !='') { klasa = 'class="'+klasa+'"'; }
	if(style !='') { style = 'style="'+style+'"'; }
	if(image !='') {
		return '<a href="mailto:'+nm+'" '+klasa+' '+style+'>'+image+'</a>';
	}
	return '<a href="mailto:'+nm+'" '+klasa+' '+style+'>'+nm+'</a>';
}
