// JavaScript Document

function provjeri_stranicu()
{
	//alert(window.location);
	var adresa = window.location.toString();
	if(adresa.indexOf('comsoft.ba/default.asp', 0).toString() != "-1" || adresa.toString() == "http://www.comsoft.ba/" || adresa.toString() == "http://www.comsoft-bh.com/" || adresa.indexOf('comsoft-bh.com/default.asp', 0).toString() != "-1")
		document.getElementById("pocetna").style.backgroundColor = '#667AB3';
	else if(adresa.indexOf('prodaja', 0).toString() != "-1")
		document.getElementById("prodaja").style.backgroundColor = '#667AB3';
	else if(adresa.indexOf('pp', 0).toString() != "-1")
		document.getElementById("pp").style.backgroundColor = '#667AB3';
	else if(adresa.indexOf('download', 0).toString() != "-1")
		document.getElementById("download").style.backgroundColor = '#667AB3';
	else if(adresa.indexOf('about', 0).toString() != "-1")
		document.getElementById("about").style.backgroundColor = '#667AB3';
	else if(adresa.indexOf('pomoc', 0).toString() != "-1")
	{
		document.getElementById("pomoc").style.backgroundColor = '#667AB3';
		document.getElementById("pomoc").style.color = '#FFFFFF';
	}
	else if(adresa.indexOf('kontakt', 0).toString() != "-1")
	{
		document.getElementById("kontakt").style.backgroundColor = '#667AB3';
		document.getElementById("kontakt").style.color = '#FFFFFF';
	}
	else if(adresa.indexOf('avast', 0).toString() != "-1")
	{
		document.getElementById("avast").style.backgroundColor = '#667AB3';
		document.getElementById("avast").style.color = '#FFFFFF';
	}
}

function pokreni()
{	
			if (document.getElementById('index_news')) { // DOM3 = IE5, NS6 
				document.getElementById('index_news').textContent = "Vijesti se ucitavaju...";
				document.getElementById('index_news').innerHTML = "Vijesti se ucitavaju...";
				document.getElementById('index_news').setAttribute('href', '#');
			} 
			else { 
				if (document.layers()) { // Netscape 4 
					document.index_news.textContent = "Vijesti se ucitavaju...";
					document.index_news.setAttribute('href', '#');
				} 
				else { // IE 4 
					document.all.index_news.innerHTML = "Vijesti se ucitavaju...";
					document.all.index_news.setAttribute('href', '#');
				} 
			}
			prva();
}

function TAG(obj, tag)
{
	wrapText(obj, '['+tag+']', '[/'+tag+']');

};

function wrapText(obj, beginTag, endTag)
{
	if(typeof obj.selectionStart == 'number')
	{
		// Mozilla, Opera, and other browsers
		var start = obj.selectionStart;
		var end   = obj.selectionEnd;
		
		obj.value = obj.value.substring(0, start) + beginTag + obj.value.substring(start, end) + endTag + obj.value.substring(end, obj.value.length);
	}
	else if(document.selection)
	{
		// Internet Explorer

		// make sure it's the textarea's selection
		obj.focus();
		var range = document.selection.createRange();
		if(range.parentElement() != obj) return false;

	    if(typeof range.text == 'string')
	        document.selection.createRange().text = beginTag + range.text + endTag;
	}
	else
		obj.value += text;
		obj.focus;

		
};

