
/* PRODUCT LIST RELATED ITEMS */

var activePhotoDiv;

function fotoDivShow(div_id, elem) {
	fotoDivHide();
	var e = document.getElementById(div_id);

	// @TODO: Get image dimensions.
	var w = 210;
	var h = 210;
	e.style.width = w+'px';
	e.style.height = h+'px';
	e.style.display = 'block';
	activePhotoDiv = e;
}

function fotoDivHide() {
  if(activePhotoDiv) {
    activePhotoDiv.style.display = 'none';
    activePhotoDiv = false;
  }
}
