function Browser()
{
	var self = this;
	
	this.isInternetExplorer = isInternetExplorer;
	
	function isInternetExplorer()
	{
		if(document.all){
			return(true);
		}
		return(false);
	}
}