function scrn(){
	sw = screen.width;
	sh = screen.height;
	if(sw < 1024 || sh < 768 || navigator.userAgent.indexOf("MSIE") > -1){
		alert("1024x768以下の解像度、InternetExplorerでは正常に表示できない可能性があります");
	}
}
function AddFav(){
	//Internet Explorer
	if(navigator.userAgent.indexOf("MSIE") > -1){
		window.external.AddFavorite(location.href,document.title);
	}else if(navigator.userAgent.indexOf("Lunascape") > -1){
		alert("[Ctrl]と[G]ボタンを同時に押してください。");
	}else if(navigator.userAgent.indexOf("Firefox") > -1){
		window.sidebar.addPanel(document.title,location.href,'');
	}else if(navigator.userAgent.indexOf("Opera") > -1){
		window.open(location.href,'sidebar','title='+document.title);
	}else if(navigator.userAgent.indexOf("Chrome") > -1){
		alert("[Ctrl]と[D]ボタンを同時に押してください。");
	}else{
		alert("お気に入りに追加スクリプトを利用できません");
	}
}