My web page displays live images of size (640X380) using applet.
On Click of a button I need to display (320X240) in the same place.
How do I write a JavaScipt for this.
Thanks
Karthey
<HTML>
<HEAD>
<meta name="GENERATOR " Content="Micros oft Visual Studio.NET 7.0">
<script id="clientEvent HandlersJS" language="javas cript">
function Button1_onclick ()
{
}
</HEAD>
<body>
<INPUT id="Button1" type="button" value="320X240" name="medimg"
onclick="return Button1_onclick ()">
<table width="714" ID="Table1">
<tr>
<td width="640" height="480" rowspan="6">
<APPLET id="Applet1" style="WIDTH: 640px; HEIGHT: 480px"
height="480" width="483" align="top" code="CamView.c lass"
name="CamViewAp plet" viewastext>
<PARAM NAME="imagefile " VALUE="<%=image File%>">
</APPLET>
</td>
</tr>
</table>
</body>
</HTML>
On Click of a button I need to display (320X240) in the same place.
How do I write a JavaScipt for this.
Thanks
Karthey
<HTML>
<HEAD>
<meta name="GENERATOR " Content="Micros oft Visual Studio.NET 7.0">
<script id="clientEvent HandlersJS" language="javas cript">
function Button1_onclick ()
{
}
</HEAD>
<body>
<INPUT id="Button1" type="button" value="320X240" name="medimg"
onclick="return Button1_onclick ()">
<table width="714" ID="Table1">
<tr>
<td width="640" height="480" rowspan="6">
<APPLET id="Applet1" style="WIDTH: 640px; HEIGHT: 480px"
height="480" width="483" align="top" code="CamView.c lass"
name="CamViewAp plet" viewastext>
<PARAM NAME="imagefile " VALUE="<%=image File%>">
</APPLET>
</td>
</tr>
</table>
</body>
</HTML>
Comment