function random_img(){
  
try{
  var ry=Math.floor(Math.random()*myimages.length);
  if (ry==0)
     ry=1;
     document.write('<img src="'+myimages[ry]+'" border=0>');
     }
 catch(e)
 {}
}
