/** *********************************************
 *
 *  サブウインド
 *
 ********************************************* **/
jQuery(function() {
	// ウィンドオープン
	jQuery(".window").click(function(){
		var intWidth = 600;
		var intHeight = 380;
		wx = Math.floor((window.screen.width - intWidth) / 2);
		if (wx < 0) wx = 0;
		wy = Math.floor((window.screen.height - intHeight) / 2);
		if (wy < 0) wy = 0;
		window.open(this.href, "WindowName","left=" + wx + ",top=" + wy + ",width=" + intWidth + ",height=" + intHeight + ",dependent=yes,location=no,menubar=no,status=no,toolbar=no,scrollbars=no,resizable=yes");
		return false;
	});
        // ウィンドクローズ
	jQuery(".close").click(function(){
		window.close();
		return false;
	});
});
/** *****************************************
 *
 *  サブミット
 *
 ***************************************** **/
jQuery(function(){
	jQuery(".contactSubmit").click(function(){
		if(!window.opener || window.opener.closed){
			window.close();
			return false;
　　		} else{
			var strVal = 'MySQL関連製品';
			window.opener.jQuery("#qkval").val(strVal);
			window.opener.document.saform.submit();
// 			window.opener.open("https://qooker.jp/Q/ja/softagency/inquiry/","_self");
			window.close();
			return false;
		}
	});
});
/** *****************************************
 *
 *  リンク
 *
 ***************************************** **/
jQuery(function(){
		jQuery(".link").click(function(){
			var val = jQuery(".link").attr("href");
			if (!val) {
				return false;
			}else{
				var browserCheck = {
					ie : jQuery.browser.msie && jQuery.browser.version,
					fox : jQuery.browser.mozilla && jQuery.browser.version,
					saf : jQuery.browser.safari
				};

				if (browserCheck.ie == "7.0") {
					window.opener = window;
					window.opener.location.href = val;
// 					window.open(val,"_self").opener;
					return false;
				}else{
					window.opener.location.href = val;
// 					window.opener.open(val,"_self");
					window.close();
					return false;
				}
			}
		});
});
