// JavaScript Document
  message     = " Mirta De Simoni^" +
                " Mirta De Simoni^" +
                " Mirta De Simoni^" +
                " Mirta De Simoni^" +
                "^" +
                "^" +
                "^"
  scrollSpeed = 54
  lineDelay   = 2100

  // Do not change the text below //
  txt         = ""

  function scrollText(pos) {
    if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == message.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }

scrollText(0)

function openPicture(url, name) {
	//alert(url);
	var newWindow = window.open(url, name, 'status=no,resizeable=no,width=550,height=640');
	newWindow.focus();
}

