var BrowserDetect = {
	init: function () {
		this.browser = this.searchString(this.dataBrowser) || "An unknown browser";
		this.version = this.searchVersion(navigator.userAgent)
			|| this.searchVersion(navigator.appVersion)
			|| "an unknown version";
		this.OS = this.searchString(this.dataOS) || "an unknown OS";
	},
	searchString: function (data) {
		for (var i=0;i<data.length;i++)	{
			var dataString = data[i].string;
			var dataProp = data[i].prop;
			this.versionSearchString = data[i].versionSearch || data[i].identity;
			if (dataString) {
				if (dataString.indexOf(data[i].subString) != -1)
					return data[i].identity;
			}
			else if (dataProp)
				return data[i].identity;
		}
	},
	searchVersion: function (dataString) {
		var index = dataString.indexOf(this.versionSearchString);
		if (index == -1) return;
		return parseFloat(dataString.substring(index+this.versionSearchString.length+1));
	},
	dataBrowser: [
		{ 	string: navigator.userAgent,
			subString: "OmniWeb",
			versionSearch: "OmniWeb/",
			identity: "OmniWeb"
		},
		{
			string: navigator.vendor,
			subString: "Apple",
			identity: "Safari"
		},
		{
			prop: window.opera,
			identity: "Opera"
		},
		{
			string: navigator.vendor,
			subString: "iCab",
			identity: "iCab"
		},
		{
			string: navigator.vendor,
			subString: "KDE",
			identity: "Konqueror"
		},
		{
			string: navigator.userAgent,
			subString: "Firefox",
			identity: "Firefox"
		},
		{
			string: navigator.vendor,
			subString: "Camino",
			identity: "Camino"
		},
		{		// for newer Netscapes (6+)
			string: navigator.userAgent,
			subString: "Netscape",
			identity: "Netscape"
		},
		{
			string: navigator.userAgent,
			subString: "MSIE",
			identity: "Explorer",
			versionSearch: "MSIE"
		},
		{
			string: navigator.userAgent,
			subString: "Gecko",
			identity: "Mozilla",
			versionSearch: "rv"
		},
		{ 		// for older Netscapes (4-)
			string: navigator.userAgent,
			subString: "Mozilla",
			identity: "Netscape",
			versionSearch: "Mozilla"
		}
	],
	dataOS : [
		{
			string: navigator.platform,
			subString: "Win",
			identity: "Windows"
		},
		{
			string: navigator.platform,
			subString: "Mac",
			identity: "Mac"
		},
		{
			string: navigator.platform,
			subString: "Linux",
			identity: "Linux"
		}
	]

};

function setActiv(page, id, type, l){
	BrowserDetect.init();
	/*if(BrowserDetect.browser == 'Opera'){
		alert('Browserul dumneavoastra nu suporta ajax! \n Va rugam folositi Internet Explorer sau Mozilla!');
	}else{*/
			if (window.XMLHttpRequest){
				AJAX=new XMLHttpRequest();              
			}else{                                  
				AJAX=new ActiveXObject("Microsoft.XMLHTTP");
			}
		  if (AJAX) {
			 AJAX.open("GET", './include/ajax.php?page=' + page + '&id=' + id + '&type=' + type + "&l="+l, false);
			 AJAX.send(null);
			document.getElementById('comment').innerHTML = AJAX.responseText;
			AJAX.open("GET", './include/p.php?page=' + page + '&id=' + id + '&type=' + type + "&l=", false);
			AJAX.send(null);
			document.getElementById('p').innerHTML = AJAX.responseText;
		  }else{
			 return false;
		  }
		}
	//}

function comm(page, id, type, l){
	BrowserDetect.init();
	if(BrowserDetect.browser == 'Opera'){
		alert('Browserul dumneavoastra nu suporta ajax! \n Va rugam folositi Internet Explorer sau Mozilla!');
	}else{
			if (window.XMLHttpRequest){
				AJAX=new XMLHttpRequest();              
			}else{                                  
				AJAX=new ActiveXObject("Microsoft.XMLHTTP");
			}
		  if (AJAX) {
			 AJAX.open("GET", './include/ajax_com.php?page=' + page + '&id=' + id + '&type=' + type + "&l="+l, false);
			 AJAX.send(null);
			document.getElementById('comments').innerHTML = AJAX.responseText;
		  }else{
			 return false;
		  }
		}
	}


function vote(type, id, note){
	if (window.XMLHttpRequest){
		AJAX=new XMLHttpRequest();              
	}else{                                  
		AJAX=new ActiveXObject("Microsoft.XMLHTTP");
	}
  if (AJAX) {
	 AJAX.open("GET", './include/note.php?type=' + type + '&id=' + id + '&vot=' + note , false);
	 AJAX.send(null);
	 document.getElementById('vot').innerHTML = AJAX.responseText;
  }else{
	 return false;
  }
}

function vote_over(i, s){
	for(c=1;c<=i;c++){
		document.getElementById('img_v' + c).src = 'images/star_vote.jpg';
	}
}

function vote_out(i, s, is_semi_med){
	for(c=1;c<=5;c++){
		document.getElementById('img_v' + c).src = 'images/star_off.jpg';
	}
	for(c=1;c<=i;c++){
		document.getElementById('img_v' + c).src = 'images/star_on.jpg';
	}
	if(s !== 0 && is_semi_med){
		document.getElementById('img_v' + s).src = 'images/star_semi.jpg';
	}
}

function cellImg(idCell, imgName) {
document.getElementById(idCell).style.background = "url(" + imgName + ") no-repeat center";
} 


function show(id, x, y){
		document.getElementById("a" + id).style.display = '';
		//document.getElementById('a' + id).style.margin-left= x + 115;
		//document.getElementById('a' + id).style.margin-top= y + 115;
		//document.getElementById('a' + id).innerHTML = x + " x " +y;
	}
function hide(id){
	document.getElementById("a" + id).style.display = 'none';
}