// $Revision: #4 $
// WARNING: This file is in both TargetJavascript and IncaStaticMediaTarget!  If you edit one, copy the changes to the other!

function openPopup(asin, item, urlGet) {
  self.name = 'mainWindow';
  var quantity = (item == 'displayBuyBox') ? document.getElementById('qtty').value : 1;
  if (item == 'displayBuyBox' &&  document.getElementById('freeGiftBBO')) {
        var freeBenefitASIN = document.getElementById('freeBenefitASIN').value;
	window.open('/gp/detail/map-popup.html/?quantity='+quantity+'&asin='+asin+'&freeBenefitASIN='+freeBenefitASIN,'named','location=no,menubar=no,resizable=no,height=425,width=675,scrollbars=no,left=220,screenX=220,top=70,screenY=70');  	
  }
  else {
	  window.open('/gp/detail/map-popup.html/?quantity='+quantity+'&asin='+asin+'&urlGet='+urlGet,'named','location=no,menubar=no,resizable=no,height=425,width=675,scrollbars=no,left=220,screenX=220,top=70,screenY=70'); 
  }
}

