function ImagenAleatoria(elementos) {
	document.write('<img src="' + elementos[Math.floor(Math.random() * elementos.length)] + '" />');
}

function ventanaSecundaria (URL, NombreVentana){ 
   window.open(URL, NombreVentana, "width=750,height=500,scrollbars=YES,resizable=YES") 
} 

function ventanaSecundaria_EX (URL, NombreVentana, ancho, alto){ 
   window.open(URL, NombreVentana, "width=" + ancho + ",height=" + alto + ",scrollbars=YES,resizable=YES") 
} 
