"use strict";

$(document).ready(function () {
   if (!window.opener) {
      return;
   }
   var openerLocation = window.opener.location.href;
   if (openerLocation.indexOf("/sitelicense/") !== -1 || openerLocation.indexOf("/misc/special_products.php") !== -1 
      || openerLocation.indexOf("/store/") !== -1) {
      //this window was opened from the store, so add a "Return" button
      $("#productInfo").prepend("<form method='post'><input type='submit' value='Return' id='returnButton' class='sbttn'></form>");
      $("#returnButton").click(function () {
         if (!window.opener || window.opener.closed) {
            window.open(openerLocation);
         }
         window.close();
         return false;
      });
      $("#buyNowForm").hide();
   }
});
