function button ()
{
document.write("<font face=Arial size=-1 class=top><b>INTERFACE</b></font><br>");
var buttontext = new Array(30)
var buttonlink = new Array(30)
var i;
var max=11;   //³Ì¤j­È

buttontext[0] = '3D Golden'
buttontext[1] = '3D Purple'
buttontext[2] = '3D Silver'
buttontext[3] = '3D Blue'
buttontext[4] = '3D Green'
buttontext[5] = 'Classic'
buttontext[6] = 'Blueness'
buttontext[7] = 'Orange'
buttontext[8] = 'Redness'
buttontext[9] = 'Samples Page'
buttontext[10] = 'Blank Buttons'

buttonlink[0] = 'golden.htm'
buttonlink[1] = 'purple.htm'
buttonlink[2] = 'silver.htm'
buttonlink[3] = 'blue.htm'
buttonlink[4] = 'green.htm'
buttonlink[5] = 'classic.htm'
buttonlink[6] = 'blueness.htm'
buttonlink[7] = 'orange.htm'
buttonlink[8] = 'red.htm'
buttonlink[9] = 'samples.htm'
buttonlink[10] = 'blank.htm'

for(i=0;i<max;i++)
   if(buttonlink[i]=="")
      document.write(buttontext[i])
   else
      document.write("<img src=/images/arrow.gif width=12 height=12><a href=\""+buttonlink[i]+"\">"+buttontext[i]+"</a><br>");
}
button ()