var msgNotice = { "CD001":"詳細情報・購入ページを表示するため、英国雑貨トゥーシェの楽天ショップページを開きます。よろしければOKを押してください。", }; // 一応確認してから、規定のリンク先を開く function jumpPageWithMakingSure(msgcd,pageUrl){ // ページを開くか確認する var res = confirm( msgNotice[msgcd] ); if(res == true){ jumpPage( pageUrl); } } // 単純にリンク先を開く function jumpPage(pageUrl){ window.open("common/open/page/pageJump.php?addr=" + pageUrl,''); }   //-------------------- //スタイル変更共通処理 //-------------------- // 角を丸くする処理 $('.corner_rd5').corner('5px'); $('.corner_rd10').corner('10px'); $('.corner_rd20').corner('20px'); $('.corner_rd50').corner('50px'); // スクロールバーの見た目を変える処理 $(document).ready(function() { $('.scroll-pane').jScrollPane({ showArrows : false, // 矢印の有無 arrowScrollOnHover : false // 自動スクロール }); }); //-------------------- //クラス adjust-wdw-ht は1画面分の高さに変更 //-------------------- $(document).ready(function () { hsize = $(window).height(); $(".adjust-wdw-ht").css("height", hsize + "px"); }); $(window).resize(function () { hsize = $(window).height(); $(".adjust-wdw-ht").css("height", hsize + "px"); });