function ProductShowMoreInfoLayerHorizontalCenterHTMLPopUp()
{
CalculateWindowSize();
left=(ecsWindowWidth-400)/2;
document.getElementById('ProductShowMoreInfoLayer').style.left = parseInt(left) + 'px';
};

function ProductShowMoreInfo(data) {
  if (data==1) document.getElementById('ProductShowMoreInfoLayer').style.display='none';
  else 
{
  ProductShowMoreInfoLayerHorizontalCenterHTMLPopUp();
  document.getElementById('ProductShowMoreInfoLayer').style.display='block';
}
 }
