|
|
Slide
<html>
<head>
<title>index</title>
<base target="main">
</head>
<body bgcolor="green">
<form name="Form_name">
<select name="Select_name" onChange="Selection()"
size="1">
<option value="file-0.htm">選んでください </option>
<option value="file-1.htm">file-1 </option>
<option value="file-2.htm">file-2 </option>
<option value="file-3.htm">file-3 </option>
</select> </p>
</form>
<script language="JavaScript">
<!--
function Selection(){
Selected=document.Form_name.Select_name.selectedIndex;
File_name=document.Form_name.Select_name.options[Selected].value;
top.main.location.href=File_name;
}
// -->
</script>
<a href="file-0.htm">file-0</a>
<a href="file-1.htm">file-1</a>
<a href="file-2.htm">file-2</a>
<a href="file-3.htm">file-3</a>
</body>
</html>