/*  プルダウン用初期設定 */

//初期化
CPflag=0;
macie=0;

//メニューID及びセレクタ　配列変数値+_mnがプルダウン用、+_tがトップ用
allMenusT=new Array('userconfig','rootconfig');

allMenus = new Array;
for (i=0;i<allMenusT.length;i++){
	allMenus[i]=allMenusT[i]+'_mn';
}

/* メニュー部設定 */

//セル横幅
mnWidth = 77;

//テーブルヘッダ
htmlSTRS = '<img src="/img/00.gif" width="400" height="1"><br><table border="0" cellpadding="0" cellspacing="0"><tr>';

//メニュー用テーブルセルデータ
//{n1}はメニューID {n2}はメニュー項目 {n3}はリンク先
menuSRC = '<td height=\"16\"><img src=\"/img/menu_button.gif\" width=\"15\" height=\"15\" border=\"0\" name=\"menu_{n1}\"></td>';
menuSRC += '<td height=\"16\" onmouseover=\"showHideLayers(\'{n1}\')\" onclick=\"document.location.href=\'{n1}/\'\" onmouseout=\"hideMenu()\">';
menuSRC += '<div id=\"{n1}_t\" name=\"{n1}_t\" style=\"position:relative; top:0px;\">';
menuSRC += '<font face=\"Verdana, Arial, Helvetica, sans-serif\" class=\"nine\">';
menuSRC += '<a onmouseover=\"showHideLayers(\'{n1}\');MM_swapImage(\'menu_{n1}\',\'\',\'/img/menu_button_sw.gif\',1)\" onmouseout=\"hideMenu();MM_swapImgRestore()\" href=\"{n3}\" class=\"unon_skyb\">{n2}</a></font>';
menuSRC += '</div>';
menuSRC += '</td>';

//スペース用セル
htmlSTRTE = '<td height="16"><img src="/img/00.gif" width="3" height="3"></td>';

//テーブルフッタ
htmlSTRE = '<td height="16">　</td> <td height="16">　</td> <td height="16">　</td> </tr></table>';



/* プルダウン部設定 */

//メニューleftオフセット値補正 左寄せしたい場合などに
offstLX=-54;

//メニューtopオフセット値補正 上寄せしたい場合などに
offstLT=70;
	
//メニュー選択時の色
actCOLOR = '#d4d0c8';

//メニュー位置を補正するか、下記値で固定するか→1で固定
posFixed=0;

//各メニューの横間隔
baseMenuW=78;

//メニューを配置する横位置（Window左端より）
startbaseMenu=326;

//メニューを配置する縦位置（Window上端より）
menuT=108;

//プルダウンメニューのwidth
menuW=128;

//プルダウンメニューの数
menuNM=2;

//プルダウンメニューデータ 1行１メニュー 「:::」で一つのメニューの区切り
//一行 = メニューID , メニュー項目値 , リンク先URL + 改行 ('\r\n')

menuSTR  = 'userconfig,転送設定,transfer.php' + '\r\n';
menuSTR += 'userconfig,転送通知,notice.php' + '\r\n';
menuSTR += 'userconfig,個人情報,user_info.php' + '\r\n';
menuSTR += 'userconfig,パスワード,passwd.php' + '\r\n';
menuSTR += 'userconfig,自動応答,auto_reply.php' + '\r\n';
menuSTR += 'userconfig,応答済みリスト,auto_reply.php?reply_list=1' + '\r\n';
menuSTR += 'userconfig,署名,signature.php' + '\r\n';
menuSTR += 'userconfig,テンプレート,mail_template.php' + '\r\n';
menuSTR += 'userconfig,外部メール,ext_mail.php' + '\r\n';
menuSTR += ':::' + '\r\n';
menuSTR += 'rootconfig,共通フィルタ,share_filter.php' + '\r\n';
menuSTR += 'rootconfig,宛先不明メール,alias.php' + '\r\n';
menuSTR += 'rootconfig,アカウント管理,admin_users.php' + '\r\n';
menuSTR += 'rootconfig,ウィルスチェック,virus_check.php' + '\r\n';
//menuSTR += 'rootconfig,個別フィルタ管理,user_filter_part.php' + '\r\n';
menuSTR += 'rootconfig,共通スパムカット,share_spam_cut.php' + '\r\n';


//メニュー項目データ
//メニューID , メニュー項目値(画像URL) , リンク先URL
rootSTR  = 'userconfig,▼,user_config.php' + '\r\n';
rootSTR += 'rootconfig,▼,root_user_config.php' + '\r\n';

//非対応ブラウザ用メニューテーブル
oldmenu  = '';

/*
↓html部記述例

<body onload="changeLAYERPOSbelow1();">

<!-- プルダウン用レイヤー定義 body直後に-->
<script language="JavaScript"><!--
putdropmenu();
//--></script>

<!-- トップメニュー用レイヤー定義 メニュー配置部分に-->
<script language="JavaScript"><!--
puttopmenu();
//--></script>

*/
