eBookControl = function () {}

eBookControl.prototype = {
  Open : function(bookID) {
    if (0 < bookID.length) {
      var url      = "http://ebook.jrtours.co.jp/book/contents.php?fid=" + bookID;
      var winName  = "ebook";
      var features = "resizable=yes,width=1010,height=675";
      MM_openBrWindow(url, winName, features);
    }
    return false;
  }
}

var EBookCtrl = new eBookControl();


// ----------
privacyFormPage = function () {}

privacyFormPage.prototype = {
  Agree : function(elementID, isAgree) {
    document.getElementById(elementID).disabled = !isAgree;
  }
}

var PrivacyForm = new privacyFormPage();

