// get window location
var f = "" + window.location + ""

// make variable
local = ""

// set exceptions for local browsing
if (f.indexOf("localhost") != -1)
local = "localhost/"

if (f.indexOf("michael") != -1)
local = "localhost/"

// define base URL variable
var base = "http://"+local+"www.shopart.com/"

// set URLs in array
var Urls = new Array

  (base+"binder/index.html",
  ""+base+"kuenstler.html",
  ""+base+"home.html",
  ""+base+"bortz/index.html");

var Names = new Array
 ("previous artist",
"artists A-Z",
  "ShopArt Home",
  "next artist");
document.write("<center><table width=100% cellpadding=0 cellspacing=0 border=0><tr><td align=center><font size=4 face=arial, helvetica color=8b008b>");

for(var i = 0; i <Urls.length; i++)
if(Urls[i] == f)

document.write(" <b>·</b> <u><font color=ff00ff><b>"+Names[i]+"</b></font></u>");

else

document.write(" <b>·</b> <a target=\"_top\" href="+Urls[i]+">"+Names[i]+"</a>");

document.write("</nobr></font></td></tr></table></center>");
