<html>
<head>
<script language="JavaScript">
function myFunction(button) {
document.myform.selected.value = button;
myFlash(button);
}
function
myFlash(button) {
if (document.myform.selected.value != button) {
document.myform.mybutton[button].checked = false;
return;
}
if
(document.myform.mybutton[button].checked == true) {
document.myform.mybutton[button].checked = false;
}
else {
document.myform.mybutton[button].checked = true;
}
setTimeout ("myFlash(" + button + ")", 500);
}
</script>
</head>
<body>
<form name="myform">
<input type="hidden" name="selected">
<input type="radio"
name="mybutton">
<a href="http://www.buyitonline.com/europeanchocolatestore"
onMouseOver=myFunction(0); style="color: #000000; text-decoration: none">
<font face="Arial">European Chocolate
Store</font></a>
<br>
<input type="radio"
name="mybutton">
<a href="http://www.alienskin.com"
onMouseOver=myFunction(1); style="color: #000000; text-decoration: none">
<font face="Arial">Alien Skin Software</font></a>
<br>
<input type="radio"
name="mybutton">
<a href="../../../jobsearch/jobsearch.html"
onMouseOver=myFunction(2); style="color: #000000; text-decoration: none">
<font face="Arial">Job Search</font></a>
</form>
</body>
</html>