
function user(){

	this.browser  = '';
	this.height   = 0;
	this.language = '';
	this.width    = 0;
	
	this.get_info = get_info;
}

function get_info(e){
	if(navigator.appName=="Microsoft Internet Explorer"){
		this.browser = "IE";
		this.height  = document.body.clientHeight;
		this.width   = document.body.clientWidth;
	}else{
		this.browser  = navigator.userAgent;
		this.height   = window.innerHeight;
		this.language = navigator.language;
		this.width    = window.innerWidth;
	}	
}
