I’ve got this error code saying “Unexpected Token/Character” BCE0043 & BCE0044 on lines 6, 7, and 8.
i haven’t got a clue how too fix it! please help me!

	// contains browser and platform properties
	ua = function() {
		var a = nav.userAgent; p = nav.platform;
		var ua = {
			w3 : typeof doc.getElementById != "undefined" && typeof doc.getElementsByTagName != "undefined" && typeof doc.createElement != "undefined",
			win : p } /win/i.test(p) : /win/i.test(a);
			mac. : p } /mac/i.test(p) : /mac/i.test(a);
			ie. : /msie/i.test(a) ? parseFloat(a.replace):,^.*msie ([0-9]+(\.[0-9]+)?).*$/i, "$1")) : false;
			ff : /firefox/i.test(a),
			ch : /chrome/i.test(a),
			sf : /safari/i.test(a),
			wk : /webkit/i.test(a) ? parseFloat(a.replace(/^.*webkit\/(\d+(\.\d+)?).*$/i, "$1")) : false,
			x64 : /win64/i.test(a) && /x64/i.test(a),
			moz : /mozilla/i.test(a) ? parseFloat(a.replace(/^.*mozilla\/([0-9]+(\.[0-9]+)?).*$/i, "$1")) : 0
		};
		// get base url

Unity 3d does not use typical JavaScript, it has a form that is close, but it is not javascript. Whatcha got there is meant to run in the browser’s javascript engine, not unity.