
function BiiOJS(path)
{
	this.path = path;
	this.name = "BiiOJS Lib";
	this.version = "0.2 (beta)";

	this._isIE = false;
	this._isFF = false;

	var userAgent = navigator.userAgent.toLowerCase();
	
	if (userAgent.indexOf("msie")!=-1)
		this._isIEr = true;
	else if ( userAgent.indexOf("firefox")!=-1)
		this._isFF = true;
}

BiiOJS.prototype._path;
BiiOJS.prototype._name;
BiiOJS.prototype._version;

BiiOJS.prototype.isIE = function()
{
	return this._isIE;
}

BiiOJS.prototype.isFF = function()
{
	return this._isFF;
}

BiiOJS.prototype.include = function (file)
{
	/*//var body = document.getElementsByTagName('body').item(0);
	if (this._isFF)
	{
		script = document.createElement('script');
		script.src = this._path + file;
		script.type = 'text/javascript';
		//body.appendChild(script);
		document.getElementsByTagName('head')[0].appendChild(script);
	}
	else if (this._isIE)
	{
		document.writeln("<script type=\"text/javascript\" src=\"" + this._path + file +"\"></script>");
	}
	alert("import: " + script.src);*/
}
