Come posso visualizzare le immagini nel form seguente (web form da pagina master) senza ricorrere (come faccio nell'esempio) as un <button

il tag <body dove potrei mettere onload="runSlideShow()" non è disponibile

come faccio ????
-----codice---------------------------------------------------
<%@ Page Title="" Language="vb" AutoEventWireup="false" MasterPageFile="~/Site.Master" CodeBehind="Test.aspx.vb" Inherits="Sito_ArcturusAT.Test" %>

<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
<link rel="stylesheet" href="stili/nivo-slider.css" type="text/css" media="screen" />
<link rel="stylesheet" href="stili/style.css" type="text/css" media="screen" />

</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server" >







[img]/Immagini/tmp/negozio_1.jpg[/img]
<button runat ="server" id="button1" onclick ="runSlideShow()" />
<script type ="text/javascript" >
var slideShowSpeed = 2000 //5000 tempo visualizza immagine
//var crossFadeDuration = 3
var Pic = new Array()
Pic[0] = '/Immagini/tmp/negozio_1.jpg'
Pic[1] = '/Immagini/tmp/negozio_2.jpg'
Pic[2] = '/Immagini/tmp/negozio_3.jpg'
Pic[3] = '/Immagini/tmp/negozio_4.jpg'
Pic[4] = '/Immagini/tmp/negozio_5.jpg'
Pic[5] = '/Immagini/tmp/negozio_6.jpg'
Pic[6] = '/Immagini/tmp/negozio_7.jpg'
var t
var j = 0
var p = Pic.length
var preLoad = new Array()
for (i = 0; i < p; i++){
preLoad[i] = new Image()
preLoad[i].src = Pic[i]
}
function runSlideShow(){
if (document.all){
document.images.SlideShow.style.filter="blendTrans (duration=2)"
document.images.SlideShow.style.filter="blendTrans (duration=crossFadeDuration)"
document.images.SlideShow.filters.blendTrans.Apply ()
}
document.images.SlideShow.src = preLoad[j].src
if (document.all){
document.images.SlideShow.filters.blendTrans.Play( )
}
j = j + 1
if (j > (p-1)) j=0
t = setTimeout('runSlideShow()', slideShowSpeed)
}
</script>
</asp:Content>