//カレンダー表示用メソッド
function printDate() {  
	youbi		= new Array("日","月","火","水","木","金","土");  
	myDate		= new Date();  
	theDate		= myDate.getDate();  
	theDay		= youbi[myDate.getDay()];  
	theFyear	= myDate.getFullYear();  
	theMonth	= myDate.getMonth() + 1;  
	document.write(theFyear + "年" + theMonth + "月" + theDate + "日" + "(" + theDay + ")");  
}  

//お気に入りボタン表示メソッド
function checkAndWriteBt(){
	var apl = navigator.appName;
	var ver = navigator.appVersion;
	var ie = false;

	if(apl.indexOf("Microsoft") >= 0){
		ie = true;
	
	}
	
	if(ie){
		//ユーザ毎にURLとタイトルの指定が必要
		document.write("<input type=\"button\" name=\"submit\" value=\"お気に入りに!!\" onClick=\"JavaScript:window.external.AddFavorite('http://www.toyoj.co.jp', '不動産情報　東洋住宅信販');\">");
	}
}