function winVistaChk(){
	if(navigator.userAgent.indexOf('Windows NT 6') > 0){
		return true;
	}else{
		return false;
	}
}
function installShunGadget(){
	if(winVistaChk() == true){
		location.href('http://www.nifty.com/search/shun/gadget/shunword.gadget');
	}else{
		alert("「瞬！ワード」ガジェットを設置いただけるのはWindows Vistaのみです。");
		return;
	}
}