					<!--
					function makerequest(serverPage, objID) {
						var xmlhttp = false;
						try {
							xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
						} catch (e) {
							try {
								xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
							} catch (E) {
								xmlhttp = false;
							}
						}
						if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
							xmlhttp = new XMLHttpRequest();
						}
					
						var obj = document.getElementById(objID);
						//xmlhttp.open("GET", serverPage);
						xmlhttp.open('GET', serverPage+'&IEfix='+new Date().getTime(), true);
						xmlhttp.setRequestHeader("Content-Type","application/x-javascript; charset:utf-8");
						xmlhttp.onreadystatechange = function() {
							if (xmlhttp.readyState < 4 ) {
								if(document.getElementById("ajax_loading")){
									document.getElementById("ajax_loading").style.display = 'inline';
								}
								if(document.getElementById("ajax_loading1")){
									document.getElementById("ajax_loading1").style.display = 'inline';
								}
								if(document.getElementById("ajax_loading2")){
									document.getElementById("ajax_loading2").style.display = 'inline';
								}
								if(document.getElementById("ajax_loading3")){
									document.getElementById("ajax_loading3").style.display = 'inline';
								}
								//obj.display = '<img src="ajax-loader.gif" />';
								//obj.innerHTML= '<img src="http://localhost/site/js/ajax-loader.gif" />';
								//obj.style.background= "white url(http://localhost/site/js/ajax-loader.gif) no-repeat";
							}
							if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
								//obj.style.background= "none";
								obj.innerHTML = xmlhttp.responseText;
							}
						}
						xmlhttp.send(null);
					}
					function makerequest_x(serverPage, objID, loader) {
						var xmlhttp = false;
						try {
							xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
						} catch (e) {
							try {
								xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
							} catch (E) {
								xmlhttp = false;
							}
						}
						if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
							xmlhttp = new XMLHttpRequest();
						}
					
						var obj = document.getElementById(objID);
						//xmlhttp.open("GET", serverPage);
						xmlhttp.open('GET', serverPage+'&IEfix='+new Date().getTime(), true);
						xmlhttp.setRequestHeader("Content-Type","application/x-javascript; charset:utf-8");
						xmlhttp.onreadystatechange = function() {
							if (xmlhttp.readyState < 4 ) {
								if(document.getElementById(loader)){
									document.getElementById(loader).style.display = 'inline';
								}
								//obj.display = '<img src="ajax-loader.gif" />';
								//obj.innerHTML= '<img src="http://localhost/site/js/ajax-loader.gif" />';
								//obj.style.background= "white url(http://localhost/site/js/ajax-loader.gif) no-repeat";
							}
							if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
								//obj.style.background= "none";
								obj.innerHTML = xmlhttp.responseText;
							}
						}
						xmlhttp.send(null);
					}
					
					function makerequest_new(serverPage, objID, ieFix) {
						var xmlhttp = false;
						try {
							xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
						} catch (e) {
							try {
								xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
							} catch (E) {
								xmlhttp = false;
							}
						}
						if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
							xmlhttp = new XMLHttpRequest();
						}
					
						var obj = document.getElementById(objID);
						//xmlhttp.open("GET", serverPage);
						xmlhttp.open('GET', serverPage+ieFix+new Date().getTime(), true);
						xmlhttp.setRequestHeader("Content-Type","application/x-javascript; charset:utf-8");
						xmlhttp.onreadystatechange = function() {
							if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
								obj.innerHTML = xmlhttp.responseText;
							}
						}
						xmlhttp.send(null);
						return false;
					}
					
					
					function makerequest2(serverPage, objID) {
						var xmlhttp = false;
						try {
							xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
						} catch (e) {
							try {
								xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
							} catch (E) {
								xmlhttp = false;
							}
						}
						if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
							xmlhttp = new XMLHttpRequest();
						}
					
						var obj = document.getElementById(objID);
						//xmlhttp.open("GET", serverPage);
						xmlhttp.open('GET', serverPage+'&IEfix='+new Date().getTime(), true);
						xmlhttp.setRequestHeader("Content-Type","application/x-javascript; charset:utf-8");
						xmlhttp.onreadystatechange = function() {
							if (xmlhttp.readyState < 4 ) {
								document.getElementById("ajax_loading").style.display = 'inline';
								//obj.display = '<img src="ajax-loader.gif" />';
								//obj.innerHTML= '<img src="http://localhost/site/js/ajax-loader.gif" />';
								//obj.style.background= "white url(http://localhost/site/js/ajax-loader.gif) no-repeat";
							}
							if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
								//obj.style.background= "none";
								obj.innerHTML = xmlhttp.responseText;
							}
						}
						xmlhttp.send(null);
					}
					
					function makerequest3(serverPage, serverPage2, objID, objID2) {
						var xmlhttp = false;
						try {
							xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
						} catch (e) {
							try {
								xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
							} catch (E) {
								xmlhttp = false;
							}
						}
						if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
							xmlhttp = new XMLHttpRequest();
						}
					
						var obj = document.getElementById(objID);
						var obj2 = document.getElementById(objID2);
						xmlhttp.open("GET", serverPage);
						xmlhttp.onreadystatechange = function() {
							if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
								obj.innerHTML = xmlhttp.responseText;
							}
						}
						xmlhttp.send(null);
						xmlhttp.open("GET", serverPage2);
						xmlhttp.onreadystatechange = function() {
							if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
								obj2.innerHTML = xmlhttp.responseText;
							}
						}
						xmlhttp.send(null);
					}

					function makerequest4(serverPage, objID) {
						var xmlhttp = false;
						try {
							xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
						} catch (e) {
							try {
								xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
							} catch (E) {
								xmlhttp = false;
							}
						}
						if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
							xmlhttp = new XMLHttpRequest();
						}
					
						var obj = document.getElementById(objID);
						xmlhttp.open("GET", serverPage);
						xmlhttp.onreadystatechange = function() {
							if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
								// DODAN EFEKT ZA FADE, POTREBNO funkciju execute_opacity() 
								//u box-u definirati
								execute_opacity(id);
								obj.innerHTML = xmlhttp.responseText;
							}
						}
						xmlhttp.send(null);
					}
					//-->
