function openImage(src, left, top, width, height, iwidth, iheight, caption)
{
  parent.document.getElementById('imageWindow').style.display = "block";
  parent.document.getElementById('imageWindow').style.marginLeft = left;
  parent.document.getElementById('imageWindow').style.marginTop = top;
  parent.document.getElementById('image').src = src;
  parent.document.getElementById('imageWindow').style.width = width
  parent.document.getElementById('imageWindow').style.height = height;
  parent.document.getElementById('image').style.height = iheight;
  parent.document.getElementById('image').style.width = iwidth;
  parent.document.getElementById('caption').src = caption;
}

function borderOver(image)
{
  document.getElementById(image).style.border = "solid 1px white";
}

function borderOut(image)
{
  document.getElementById(image).style.border = "solid 1px #B2B2B2";
}

function openVideo(src)
{
  var iframe = parent.window.frames['video'];

  parent.document.getElementById('videoWindow').style.display = "block";
  iframe.location = src;
}

function findPage(src)
{
  window.frames['main'].location = src;
}

function closeImageWindow()
{
  document.getElementById('imageWindow').style.display = "none";
  document.getElementById('image').src = "white.bmp";
  document.getElementById('caption').src = "white.bmp";
  document.getElementById('image').style.height = "10px";
  document.getElementById('image').style.width = "10px";
}

function closeVideoWindow()
{
  document.getElementById('videoWindow').style.display = "none";
  window.frames['video'].location = "blank.htm";
}

function mouseClick(image)
{
  document.getElementById('home').src = "home.bmp";
  document.getElementById('about').src = "about.bmp";
  document.getElementById('music').src = "music.bmp";
  document.getElementById('gallery').src = "gallery.bmp";
  
  document.getElementById('home').value = "";
  document.getElementById('about').value = "";
  document.getElementById('music').value = "";
  document.getElementById('gallery').value = "";
  
  document.getElementById(image).src = image + "_over.bmp";
  document.getElementById(image).value = "clicked";
}

function mouseOver(image)
{
  document.getElementById(image).src = image + "_over.bmp";
}

function mouseOut(image)
{
  if (document.getElementById(image).value != "clicked")
  {
    document.getElementById(image).src = image + ".bmp";
  }
}