function creat_Object()
{
var xmlhttp;
	// This if condition for  Firefox and  Opera  Browsers	
  if (!xmlhttp && typeof XMLHttpRequest != 'undefined') 
  {
		try 
		{
		  xmlhttp = new XMLHttpRequest();
		} 
		catch (e) 
		{
			alert("Your browser is not supporting XMLHTTPRequest");
			xmlhttp = false;
		}
	}
	// else condition for  ie
	else
	{
	xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
  return xmlhttp;
}

var request_load_url = creat_Object();
function sever_interaction_load_url()
	{
	if(request_load_url.readyState == 1)
		{
		    if(document.getElementById('load_url_status')!=null)
		    document.getElementById('load_url_status').innerHTML='';
		    if(document.getElementById('load_url_status')!=null)
		    document.getElementById('load_url_status').innerHTML='Status: Loading...';
		    
		}
	if(request_load_url.readyState == 4)
		{
		var answer_load_url = request_load_url.responseText;
		    if(document.getElementById('load_url')!=null)
		    document.getElementById('load_url').innerHTML='';
		    if(document.getElementById('load_url')!=null)
		    document.getElementById('load_url').innerHTML = answer_load_url;

		if(document.getElementById('load_url_status')!=null)
		document.getElementById('load_url_status').innerHTML='Status: Waiting...';
		}
	}

function load_url(url)
		{
			request_load_url.open("GET", url);
			request_load_url.onreadystatechange = sever_interaction_load_url;
			request_load_url.send('');
		}
		
function color_me(id)
	    {
		    if(document.getElementById('puls_grada')!=null)
		    document.getElementById('puls_grada').style.color='#ffa500';
		    if(document.getElementById('stubovi_grada')!=null)
		    document.getElementById('stubovi_grada').style.color='#ffa500';
		    if(document.getElementById('emisije')!=null)
		    document.getElementById('emisije').style.color='#ffa500';
		    if(document.getElementById('programska_sema')!=null)
		    document.getElementById('programska_sema').style.color='#ffa500';
		    if(document.getElementById('kontakt')!=null)
		    document.getElementById('kontakt').style.color='#ffa500';
		    if(document.getElementById('in_media_res')!=null)
		    document.getElementById('in_media_res').style.color='#ffa500';
		    if(document.getElementById(id)!=null)
		    document.getElementById(id).style.color='#ffffff';
	    }
