Hola neo_dac:
Esto hace lo que pides...
En imgs tienes que ponerel array de las imágenes que quieras usar, y donde pone left y top debes poner las coordenadas donde quieras que aparezca.
Código:
<html>
<head>
<script type='text/javascript'>
var imgs = ["../papanoel.gif", "../miemoticon.gif"];
function ini(){
var img = document.createElement("img");
with(img) {
src = imgs[Math.floor(Math.random() * imgs.length)]
with (style) {
position = "absolute";
left = "110px";
top = "120px";
}
}
document.body.appendChild(img);
}
</script>
</head>
<body onload="ini()">
</body>
</html>
Saludos