Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<html>
<head>
<script language="javascript">
function getpic (whichone)
{
switch (whichone)
{
case 1:
document.picky.src = "images/pic1.bmp"
break;
case 2:
document.picky.src = "images/pic2.jpg"
break;
}
}
</script>
</head>
<body>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber1">
<tr>
<td width="23%">
<ul>
<li onmouseover="getpic(1)">pic1</li>
<li onmouseover="getpic(2)">pic2</li>
</ul>
</td>
<td width="77%">
<img id="picky" border="0" ></td>
</tr>
</table>
</body>
</html>