//var scrtxt="EMC LACE: Identification of the standards applicable for CE certification - Fast and accurate E.M.C. measurement execution - Technical assistance to resolve any non-conformities discovered - Issue of Certificate or Technical Report as Competent Body in the E.M.C. directives";
//var lentxt=scrtxt.length;
var width=100;
var pos=1-width;
function scorrevole(lingua) {
	if (lingua=="eng"){
		scrtxt="EMC LACE: Identification of the standards applicable for CE certification - Fast and accurate E.M.C. measurement execution - Technical assistance to resolve any non-conformities discovered - Issue of Certificate or Technical Report as Competent Body in the E.M.C. directives";
	}
	else {
		scrtxt="EMC LACE: Individuazione delle norme armonizzate applicabili ai fini della marcatura CE - Rapida ed accurata esecuzione delle misure E.M.C. - Competente collaborazione tecnica per la risoluzione di eventuali non conformitą - Rilascio del Certificato o della Relazione Tecnica in qualitą di Organismo Competente nell'ambito delle Direttive E.M.C.";
	}
  lentxt=scrtxt.length;
  
  pos++;
  var scroller="";
  if (pos==lentxt) {
    pos=1-width;
  }
  if (pos<0) {
    for (var i=1; i<=Math.abs(pos); i++) {
      scroller=scroller+" ";
  }
  scroller=scroller+scrtxt.substring(0,width-i+1);
  }
  else {
    scroller=scroller+scrtxt.substring(pos,width+pos);
  }
  window.status = scroller;
  setTimeout("scorrevole('" + lingua + "')",170);
  }

