function mail(name, domain, style){
	document.write("<a href = 'mailto:" + name + "@" + domain + "' style = '"+ style +"'>" + name + "@" + domain + " </a>");
}

function changeBGmenuli(id) {

	if (navigator.userAgent.indexOf ("MSIE 5") != -1 || navigator.userAgent.indexOf ("Opera") != -1){
		if (document.getElementById(id).style.backgroundColor == '#cbf48a')
			document.getElementById(id).style.backgroundColor = '#e8fcc8';
		else
			document.getElementById(id).style.backgroundColor = '#cbf48a';	
	}
	else if (navigator.userAgent.indexOf ("Mozilla/5.0") != -1) {
		if (document.getElementById(id).style.backgroundColor == 'cbf48a')
			document.getElementById(id).style.backgroundColor = 'e8fcc8';
		else
			document.getElementById(id).style.backgroundColor = 'cbf48a';
	}
	else {
		if (document.getElementById(id).style.backgroundColor == '#cbf48a')
			document.getElementById(id).style.backgroundColor = '#e8fcc8';
		else
			document.getElementById(id).style.backgroundColor = '#cbf48a';
	}	
			
			
	
}
