/*
 *	scripts.js
 */

function check_browser() {
	if (navigator.userAgent.match("MSIE")) {
		return 'MSIE';
	} else if (navigator.userAgent.match("Firefox")) {
		return 'Firefox';
	} else if (navigator.userAgent.match("Opera")) {
		return 'Opera';
	}
}
