function texto_aleatorio(){ 
   var textos = new Array() 
   textos[0] = "<img src=img/frase1.gif height=130 width=293 border=0 >" 
   textos[1] = "<img src=img/frase2.gif height=130 width=293 border=0 >" 

   aleat = Math.random() * (textos.length) 
   aleat = Math.floor(aleat) 

document.write(textos[aleat]) 
} 
