<!--

// Browser detection
if (!document.getElementById)
{
  window.location = "../index.html";
}


// Browser-specific code
var pointerCursor = "pointer";

if (document.all)
{
  pointerCursor = "hand";
}


// Switch content in main division
var curID = "splash";
function show(myID)
{
  document.getElementById(curID).style.visibility = "hidden";
  document.getElementById(myID).style.visibility = "visible";
  curID = myID;
  document.getElementById(curBar).style.visibility = "hidden";
}

// Show a sidebar
var curBar = "artistbar";
function showbar(myBar)
{
  document.getElementById(myBar).style.visibility = "visible";
  curBar = myBar;
}


// Navigation button mouseover and mouseout functions
function fill(myID)
{
  document.getElementById(myID).style.background = "#000000";
  document.getElementById(myID).style.color = "#FFFFFF";
  document.getElementById(myID).style.cursor = pointerCursor;
}

function empty(myID)
{
  document.getElementById(myID).style.background = "#FFFFFF";
  document.getElementById(myID).style.color = "";
}


// Open popup for Note display
function openNote(myNote)
{
  window.open(myNote, 'Notes', 'width=600, height=25, toolbar=no, status=no, scrollbars=no, resizable=no, location=no, directories=no, menubar=no, copyhistory=no, left=150, top=200, screenX=150, screenY=200');
}


// Open popup for Image Information display
function openImage(myImage)
{
  window.open(myImage, 'Images', 'width=500, height=600, toolbar=no, status=no, scrollbars=yes, resizable=yes, location=no, directories=no, menubar=no, copyhistory=no, left=0, top=0, screenX=0, screenY=0');
}

//-->

















