var browser = '';

if (navigator.userAgent.match("MSIE")) {
	browser = 'MSIE';
} else if (navigator.userAgent.match("Firefox")) {
	browser = 'Firefox';
} else if (navigator.userAgent.match("Opera")) {
	browser = 'Opera';
}


