<!--
  var sWidth = 500; var sHeight = 260; var sName = "eula";
  var sURL = "license.htm"; var sTargetURL = "https://ecom.husqvarnaviking.com/commercesite/frameset-IE.asp?Country=";
  var sTargetCountry = "";

  function openEULA(sCountry) {
    if (!document.layers) {
      var sBaseWidth = ((self.document.body.offsetWidth / 2) - (sWidth / 2));
      var sBaseHeight = ((self.document.body.offsetHeight / 2) - (sHeight / 2));
    } else {
      var sBaseWidth = ((window.outerWidth / 2) - (sWidth / 2));
      var sBaseHeight = ((window.outerHeight / 2) - (sHeight / 2));
    }
    sTargetCountry = sCountry;
    window.open(sURL, sName, "width="+sWidth+",height="+sHeight+",left="+sBaseWidth+",top="+sBaseHeight);
  }
  
  function acceptEULA() {
    window.opener.redirectEULA();
    window.close();
  }
  
  function discardEULA() {
    window.close();
  }
  
  function redirectEULA() {
    if (""!=sTargetCountry) {
      window.parent.location = sTargetURL+sTargetCountry;
    }
  }
//-->


