<br />
<b>Warning</b>:  Unknown: open_basedir restriction in effect. File(/home/path/public_html/domain/PHP_errors.log) is not within the allowed path(s): (/var/www/vhosts/breukersjostattoo.com/httpdocs:/tmp) in <b>Unknown</b> on line <b>0</b><br />
function Browser(){
	var ua, s, i;
	this.isIE    = false;
	this.isNS    = false;
	this.version = null;
	ua = navigator.userAgent;
	
	s = "MSIE";
	if ((i = ua.indexOf(s)) >= 0){
		this.isIE = true;
		this.version = parseFloat(ua.substr(i + s.length));
		return;
	}
	
	s = "Netscape6/";
	if ((i = ua.indexOf(s)) >= 0) {
		this.isNS = true;
		this.version = parseFloat(ua.substr(i + s.length));
		return;
	}
	
	s = "Gecko";
	if ((i = ua.indexOf(s)) >= 0) {
		this.isNS = true;
		this.version = 6.1;
		return;
	}
}

var browser = new Browser();