  function resizeDivs(){
   OBJ = document.getElementById("contentWrapper");
   OBJ2 = document.getElementById("rightWrapper");
   OBJ3 = document.getElementById("menuWrapper");
   H = OBJ.offsetHeight;
   H2 = OBJ2.offsetHeight;
   H3 = OBJ3.offsetHeight;
   if (H >= H2 && H >= H3) H_MAX = H;
   else if (H2 >= H && H2 >= H3) H_MAX = H2;
   else if (H3 >= H && H3 >= H2) H_MAX = H3;
	/*
   if (H2 > H) {
   	H_ = H2;
	OBJ.style.height = H2 + "px";
   }
   if (H3 > H) {
   	H = H3;
	OBJ.style.height = H3 + "px";
   }
   if (H < 500) {
    OBJ.style.height = "500" + "px";
   }
   */
   document.getElementById("contentWrapper").style.height = H_MAX + "px";
  }

  function productImagePopup(productId){   
   window.open("http://www.easyfood.as/productimage.php?productId=" + productId, "", "width=400,height=400");
  }
