
function Confirm1(Key)
{
    flg = confirm("SSLを利用しますか?\n(OK：はい、ｷｬﾝｾﾙ：いいえ)");
	if(flg == true){ 
		if     (Key == "est")     {location.href = "https://ssl.deskwing.net/kernelcomputer.co.jp/kdestimate.htm";}
		else if(Key == "shi")     {location.href = "https://ssl.deskwing.net/kernelcomputer.co.jp/kdshiryo.htm";}
		else if(Key == "sup")     {location.href = "https://ssl.deskwing.net/kernelcomputer.co.jp/kdsupport.htm";}
		else if(Key == "tes")     {location.href = "https://ssl.deskwing.net/kernelcomputer.co.jp/kdtest_rq.htm";}
		else if(Key == "usr")     {location.href = "https://ssl.deskwing.net/kernelcomputer.co.jp/kduser.htm";}
		else if(Key == "demo_re") {location.href = "https://ssl.deskwing.net/kernelcomputer.co.jp/kddemo_re.htm";}
	}else{ 
		if     (Key == "est")     {location.href = "kdestimate.htm";}
		else if(Key == "shi")     {location.href = "kdshiryo.htm";}
		else if(Key == "sup")     {location.href = "kdsupport.htm";}
		else if(Key == "tes")     {location.href = "kdtest_rq.htm";}
		else if(Key == "usr")     {location.href = "kduser.htm";}
		else if(Key == "demo_re") {location.href = "kddemo_re.htm";}
	}
	return true;
}

function Confirm2()
{
    flg = confirm("購入済みの製品についての\nお問合せですか?\n(OK：はい、ｷｬﾝｾﾙ：いいえ)");
	if(flg == true){ 
		location.href = "kduseindex.htm";
	}else{ 
		alert:Confirm1('usr');;
	}
	return true;
}

