
var scrtxt="..:: www.PROJECTMUSIC.it ::: the official site ::..";
var lentxt=scrtxt.length;
var width=50;
var pos=1-width;

function scorrevole() {
  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()",120);
 }

document.all.onload=scorrevole();

function apri(str){
searchWin=window.open(str,'apri', 'scrollbars=yes, resizable=no, width=750, height=550,location=no, status=yes, toolbar=no');
}
function apriGrande(str){
searchWin=window.open(str,'apri', 'scrollbars=yes, resizable=no, width=800, height=700,location=no, status=yes, toolbar=no');
}