/*
 * client_info: クライアント環境判定
 * Copyright (c) 2003- Seesaa CO.,LTD. All rights reserved.
 * 
 * mailto: hanabusa@seesaa.jp
 * url: http://seesaa.jp/
 */


function clientInfo () {
	this.ua_kind =
		window.opera                               ? 1 : // 1: Opera
		document.all                               ? 2 : // 2: Internet Explorer
		window.controllers                         ? 3 : // 3: Gecko(Mozilla)
		window.layers                              ? 4 : // 4: Netscape Navigater4
		navigator.userAgent.indexOf('Safari') >= 0 ? 5 : // 5: Safari
		null;
	return this;
}


clientInfo.prototype.isOpera = function () {
	return this.ua_kind == 1 ? true : false;
}


clientInfo.prototype.isIE = function () {
	return this.ua_kind == 2 ? true : false;
}


clientInfo.prototype.isGecko = function () {
	return this.ua_kind == 3 ? true : false;
}


clientInfo.prototype.isNN4 = function () {
	return this.ua_kind == 4 ? true : false;
}


clientInfo.prototype.isSafari = function () {
	return this.ua_kind == 5 ? true : false;
}

