function Browser()
{
	var self = this;
	
	this.isInternetExplorer = isInternetExplorer;
	
	function isInternetExplorer()
	{
		//if( navigator.appName.indexOf("Microsoft") == -1 )
		if( document.all )
			return true;
		else
			return false;
	}
}