// Mac Internet Explorer かどうかを判定

	function checkUserAgent() {
		if((navigator.platform == "MacPPC")
			&& (navigator.appName == "Microsoft Internet Explorer")) {

//		alert ('MacIE');

//		MacIE はprototype.jsの読み込みでエラーになるので $() を使わない

		document.getElementById('q').value = escape(document.getElementById('q').value);
		document.getElementById('sugana').action = 'http://www.ddc.co.jp/pittari-search-m.html';

		} else {
//		alert('not Mac IE');

		document.getElementById('sugana').action = 'http://www.ddc.co.jp/pittari-search-g.html';

		}
	}
