function nospam(contatto, dominio) {
	location.href= "mailto:"+contatto+"@"+dominio ;
}

function chcln(obj, objclass) {
	obj.className = objclass ;
}

function goban() {
	fullbantext = "TESTO DEL BANNER SCORREVOLE testo del banner scorrevole ";
	jtxt = 0 ;
	wtm = window.setInterval("wrban()",100) ;
	
}

function wrban() {

	jtxt = (jtxt < fullbantext.length-1 ) ? jtxt+1 : 0
	
	if (jtxt < fullbantext.length-13 ) {
		mtxt = fullbantext.substr(jtxt, 13);
	} else {
		mtxt = fullbantext.substr(jtxt, fullbantext.length-jtxt) + fullbantext.substr(0, 13-(fullbantext.length-jtxt));
	}
	
	
	if (document.all) document.links(7).innerText = mtxt ;
	else if (document.getElementById) document.getElementById("link7").innerHTML = mtxt ;
	

}
