﻿//-------------------------------------------------------------------->
//- file   : window.js
//- admin  : MEGA-D Inc. Kimoto Tatsuro + SHIGETA Makoto
//- update : 20070122
//- desc   : browser window control
//- var    : 1.5
//- base   : Macromedia Dreamweaver MX 2004
//-------------------------------------------------------------------->

//external Links サイズ指定ナシ別ウィンドウ
function externalLinks() {
	if (!document.getElementsByTagName) return;
		var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href") &&
		anchor.getAttribute("rel") == "external")
		anchor.target = "_blank";
	}
}
window.onload=externalLinks;


//サイズ指定アリ ロケーション＋メニューバー＋ステータスバー＋スクロールバー＋リサイズ
function openWindow(uri,nm) {
  Win=window.open(uri,nm,"toolbar=yes,location=yes,menubar=yes,directories=no,status=yes,scrollbars=yes,resizable=yes,width=640,height=480");
  Win.focus()
}


//カラー指定商品の商品詳細へジャンプ
function jumpItemDetail (form, item) {

	var val;

	if (item != "") {

		if (form.color.length) {
	        for (i = 0; i < form.color.length; i++) {
	            if (form.color[i].checked) {
	                val = form.color[i].value;
	            }
	        }
	    }
		if ( val != "" ) {
			if ( item =="jyousuiki") {
				switch (val) {
					case "colorGreen":
						window.location.href="https://vikura.jp/ec/products/detail.php?product_id=23";
					    break;
					case "colorBlue":
					    window.location.href="https://vikura.jp/ec/products/detail.php?product_id=24";
					    break;
					case "colorPink":
						window.location.href="https://vikura.jp/ec/products/detail.php?product_id=26";
						break;
					case "colorOrange":
					    window.location.href="https://vikura.jp/ec/products/detail.php?product_id=7";
					    break;
					case "colorYellow":
					    window.location.href="https://vikura.jp/ec/products/detail.php?product_id=25";
					    break;
					default:
					    alert("カラーをご選択ください。");
					    break;
				}
			} 
			else if ( item == "aromadif" ) {
				switch (val) {
					case "colorBlueA":
						window.location.href="https://vikura.jp/ec/products/detail.php?product_id=83";
					    break;
					case "colorPinkA":
					    window.location.href="https://vikura.jp/ec/products/detail.php?product_id=84";
					    break;
					case "colorWhiteA":
					    window.location.href="https://vikura.jp/ec/products/detail.php?product_id=85";
					    break;
					default:
					    alert("カラーをご選択ください。");
					    break;
				}
			}
		}
	}

}


        //全て読み込まれたら   
        window.onload = function(){   
            //アンカーリンクタグを全て取得   
            var a_tags = window.document.all.tags("A");   
            for(var i=0; i < a_tags.length; i++){   
                //タグのフォーカスイベントを設定   
                a_tags[i].onfocus = function(){this.blur();}   
            }   
        }   
 