//<![CDATA[

var prvId = '1';

function displayAlbum(d) {
 if (prvId != '') { closeAlbum(prvId); }

 f = "f" + d;
 q = "q" + d;
 prvId = d;

 document.getElementById(f).style.display = "";

 if (document.getElementById(q)) {
  document.getElementById(q).style.color = "#0000ff";
 }
}

function closeAlbum(d) {
 f = "f" + d;
 q = "q" + d;
 prvId = '';

 document.getElementById(f).style.display = "none";

 if (document.getElementById(q)) {
  document.getElementById(q).style.color = "#000000";
 }
}

//]]>

