<!-- Begin
//=====================================
// Mostrar texto que querramos
//=====================================

var current = 0
var x = 0
var speed = 20
var speed2 = 1000
function initArray(n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
 }
}
typ = new initArray(7)
typ[0]="• www.altotelar.com.ar -  "
typ[1]="• Alto Telar "
typ[2]="• Pasión Textil "
typ[3]="• Chales "
typ[4]="• Pashminas "
typ[5]="• Bolsos "
typ[6]="• Telas  "



function typewrite() {
var m = typ[current]
window.status = m.substring(0, x++) + "•"
if (x == m.length + 1) {
x = 0
current++
if (current > typ.length - 1) {
current = 0
}
setTimeout("typewrite()", speed2)
}
else {
setTimeout("typewrite()", speed)
}
}
typewrite()

// fin


function Pop(destino,ancho,alto,izquierda,arriba,resizable,barra){
   var cadena;
   cadena="width="+ancho+" innerwidth="+ancho+" height="+alto+" innerheight="+alto+"  left="+izquierda+" top="+arriba+" resizable="+resizable+" scrollbars="+barra;
   window.open(destino,"",cadena);
}

//  End -->
