var areanames = ['Home', 'Gallery', 'Blog', 'Bits', 'Juicy','SW', 'Resume', 'Friends'];
var areatargets = ["index.html",  
    "gal/index.html", 
    "http://darzok.eponym.com/",
    "bits/index.html", "spec/specindex.html", "SW/sw.html", "res/index.html", "guest/index.html"];


function StartPage(thisarea,updots)
{
 var a;
 document.writeln('<TABLE cellspacing=5 cellpadding=1 border=0 width=100%>');
 document.writeln('<TR><TD rowspan=2 align=left><SPAN id="DSW">DSW</TD>');
 document.write('<TD align=right width=180><SPAN id="myname">Daren Scot Wilson</SPAN></TD></TR>\n<TR>'); 
 document.write('<TD align=right>'); 
 for (i=0; i<areanames.length; i++) {
    a=areanames[i];
    if (a==thisarea) a = '<b><span class="activearea">' + a + '</b></span>';
    if (i>0) document.write('&nbsp;<SPAN class=dash>*</SPAN>&nbsp;');
    aa=updots + areatargets[i] ;
    if (a=='Blog')  aa=areatargets[i];  /* no uplinks, since Blog goes offsite */
    document.write(' <A HREF="' + aa +  '">' + a  +  '</A>');
 }
 document.writeln('</TD></TR></TABLE>');
 document.writeln('<BR><center><HR width=85%></center><BR>');
 
}




function EndPage()
{
 document.writeln('<BR><HR width=95%><A HREF="' +  updots + '"index.html">home</A>');
}

