Sbata: Bilder Anzeigen

Beitrag lesen

hallo
ich habe ein kleines Problem
ich bekomme von Server eine generierte HTML datei ,
ich kann nur eine bestimmte stelle manipulieren.
und da möchte ich ganz genau an dieser Stelle nicht ein Bild anzeigen sondern  ein aufruf von Javascript machen so dass das Bild
auf die Seite oben dargestellt wird,
nur ich weiss nicht wie es geht.

das Bild kann ich an dieser Stelle selbsverständlich darstellen , aber das ist unschön, und macht  kein sinn.

ich hoffe das ihr mich weiter hilft , danke
Sbata

hier der sourcecode der generierte seite:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>
            Dialogue with GermanAlice-D
        </title>

</head>
    <body onload="document.forms[0].elements[0].focus();">
        <table border="0" cellspacing="5" cellpadding="0" width="500">
            <tr>
                <td width="30%" valign="top">
                    <p class="fieldlabel">
                        ich said:
                    </p>
                </td>
                <td width="70%" valign="top">
                    <p id="userinput">
                        halo
                    </p>
                </td>
            </tr>
            <tr>
                <td width="30%" valign="top">
                    <p class="fieldlabel">
                        <!--The name of the bot will be substituted here.-->
                        GermanAlice-D said:
                    </p>
                </td>
                <td width="70%" valign="top">
                    <p class="botresponse">
                        <!--The bot's response will be substituted here. hier kann ich javascript aufrufen ,, oder eben das Bild anzeigen-->
                         <img src="file:///D:/test.jpg">Ich heie Nesli.</img>
                    </p>
                </td>
            </tr>
            <tr>
                <td width="100%" colspan="2" valign="top">
                    <form method="post">
                        <input type="text" size="50" name="text" />
                        <input type="submit" value="Say" />
                    </form>
                </td>
            </tr>
            <tr>
                <td width="100%" colspan="2" valign="top">
                    <p class="bottomtext">
                        <!--Again we display the bot name, and also the hostname.-->
                        You are speaking with GermanAlice-D from traktour.
                    </p>
                    <p class="bottomtext">
                        <!--Here is an example of getting another bot predicate value (master).-->
                        GermanAlice-D's botmaster is Christian Drossmann.
                    </p>
                    <p>
                        You can:
                    </p>
                    <ul>
                        <li>
                            <p>
                                <!--This link will request a login form.-->
                                <a href="?login=yes">log in</a>.
                            </p>
                        </li>
                        <li>
                            <p>
                                <!--This link will request a new user registration form.-->
                                <a href="?register=yes">register a new username and password</a>.
                            </p>
                        </li>
                    </ul>
                </td>
            </tr>
        </table>
    </body>
</html>