function boxOver (which)
{ if (document.getElementById)
  { document.getElementById(which).style.backgroundColor = "#f1ea40"; }
}

function boxOut (which)
{ if (document.getElementById)
  { document.getElementById(which).style.backgroundColor = "#3a4f9f"; }
}

function PopupWindow (photoname, inwidth, inheight, sitename)
{ secondpart = "toolbar=0,location=0,status=0,menubar=0,scrollbars=0,width=" + (inwidth+15) + ",height=" + (inheight+45);
  popupwin = window.open("", "Photo", secondpart);
  popupwin.document.open("text/html","replace");
  popupwin.document.writeln ('<html><head><title>' + sitename + ' -- Click Window to Close</title></head>');
  popupwin.document.writeln ('<body bgcolor="white">');
  popupwin.document.writeln ('<a href="javascript:window.close()"><img src="pix/' + photoname + '" border="0">');
  popupwin.document.writeln ('<center>Click to Close</center></a></body></html>');
  popupwin.document.close();
  popupwin.focus();
}
