//Funzione testo scorrevole

var scrtxt="Wigo-haus. "+
"La natura insegna";
var lentxt=scrtxt.length;
var width=100;
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()",170);
  }

function fullwin800(){
window.open("home.htm","","fullscreen")
}


function start() {
    height = 600;
    width = 766;
    var props = "width=" + width + ",height=" + height;
    if(screen){
        var top = (screen.height - height) / 2;
        var left = (screen.width - width) / 2;
        props += ",top=" + top + ",left=" + left;
    
    }
    return window.open('home.htm', new Date().getTime().toString(), props);
}