function closeNotices() {
  jQuery("#notices").slideUp();
}

function closeAlerts() {
  jQuery("#alerts").slideUp();
}

jQuery(document).ready(function($) {
  //$.updnWatermark.attachAll();
  if ($('#subscription_email').size() > 0) {
    $('#subscription_email').watermark('メールアドレスを入力してね');
  }
});

var childWindow; // 子ウインドウオブジェクト
jQuery(window).load(function() {
/*onload = function() {*/
  jQuery(".open_mobile").click(function() {
    var url = "/about_mobile_groupmall.html";
    var windowName = "gm_mobile";
    var winWidth = "495";
    var winHeight = "685";
    var options = "width=" + winWidth + ", \
                   height=" + winHeight + ", \
                   menubar=0, \
                   toolbar=0, \
                   location=0, \
                   status=0, \
                   resizable=0, \
                   scrollbars=0, \
                   titlebar=1, \
                   channelmode=0,\
                   fullscreen=0";
    childWindow = open(url, windowName, options);
    return false;
  });
  
  // 親ウインドウが閉じる際に、子ウインドウも閉じる
  /*jQuery(window).unload(function() {*/
  onunload = function() {
    // 子ウインドウを閉じる
    if(!childWindow) return false; 
    childWindow.close();
  }//);
});

