<!-- Javascript code begins -->

var randomlinks=new Array()

randomlinks[0]='<a href="sub/emr_testimoniales_01.html"><img alt="Testimoniales EMR Software" src="testimoniales/emr_soft_test_01.jpg" width="250" height="220" border="none"></a>'
randomlinks[1]='<a href="sub/emr_testimoniales_02.html"><img alt="Testimoniales EMR Software" src="testimoniales/emr_soft_test_02.jpg" width="250" height="220" border="none"></a>'
randomlinks[2]='<a href="sub/emr_testimoniales_03.html"><img alt="Testimoniales EMR Software" src="testimoniales/emr_soft_test_03.jpg" width="250" height="220" border="none"></a>'
 
function randomlink(){
	
var add = randomlinks[Math.floor(Math.random()*randomlinks.length)]

return(add)

}

document.write( randomlink() );

<!-- Javascript code ends -->