function CCompChCli(o)
{
	var mess = "";
	var name = o.name;
	if (o)
	
	//alert(o.src);

	if (o.src=='http://www.huramobil.cz/img_new/icoCompare.gif' || o.src=='http://huramobil.cz/img_new/icoCompare.gif')
	{
		if (gCCompIDs.indexOf('|'+o.alt+'|') < 0)
			gCCompIDs += '|'+o.alt+'|'

		if (gCCompIDs != '')
			CCompOn()
		mess = "Položka byla přidána k porovnávání!\nPorovnávací tabulku zobrazíte tlačítkem ‘Porovnat‘."
    o.src = 'http://www.huramobil.cz/img_new/icoCompareSel.gif';
    if(getE('Comparer'))	
      getE('Comparer').style.display = 'block';
	}
	else
	{
		gCCompIDs = gCCompIDs.replace('|'+o.alt+'|', '')

		if (gCCompIDs == '')
			CCompOff()
		mess = "Položka byla odebrána z porovnávání!"
    o.src = 'http://www.huramobil.cz/img_new/icoCompare.gif'	
    if(getE('Comparer'))	
      getE('Comparer').style.display = 'none';
	}

	InsertCookies('CComp', gCCompIDs)
	alert(mess);
	return false;
}

function CCompChOn()
{
  
  //alert(gCCompIDs)

	var ch = document.getElementsByName('idCComp')
  
  //alert(ch.length)
  
	for (var i=0; i<ch.length; i++)
		if (gCCompIDs.indexOf('|'+ch[i].alt+'|') > -1)
			ch[i].src = 'http://www.huramobil.cz/img_new/icoCompareSel.gif'
}

function CCompChOff()
{
	var ch = document.getElementsByName('idCComp')

	for (var i=0; i<ch.length; i++)
		ch[i].src = 'http://www.huramobil.cz/img/BTcompar.gif'
}

function CCompGo()
{
	var q = gCCompIDs
	
	while(q.indexOf('||') > -1) q = q.replace('||', ',')
	while(q.indexOf('|') > -1) q = q.replace('|', '')
	
	if (gCCompIDs=='')	alert('Nejsou vybrány žádné produkty k porovnávání.')
	else window.open ('/Compare.asp?DPGS='+q, 'Porovnavani','toolbar=1, location=1, directories=1, status=1, menubar=1, scrollbars=1, resizable=1')

//document.location = '/Compare.asp?DPGS='+q
}


function CCompOn()
{
	var im = document.getElementById('idCCompGo')
	var de = document.getElementById('idCCompDel')

	if (im)
	{
		im.src = "/img/BTcompare.gif"; //im.src.replace('_CCmp.gif', '_CCmpEnable.gif')
		//im.style.cursor = 'pointer';
		im.alt = 'Porovnej vybrané zboží';
	}
		
	if (de)
	{
		de.className = 'show';
		//de.style.cursor = 'hand';
	}
}


function CCompOff()
{
	var im = getE('idCCompGo')
	var de = getE('idCCompDel')

	if (im)
	{
		im.src = "/img/BTcompare.gif"; //im.src.replace('_CCmpEnable.gif', '_CCmp.gif')
		//im.style.cursor = ''
		im.alt = 'Zaškrtněte nejprve zboží k porovnání'
	}
	if (de)
	{
		de.className = 'hide'
		de.style.cursor = 'hand'
	}
}


function CCompStartup()
{

//	gCCompnTree = nTree.toString()
	gCCompIDs = ExtractCookies('CComp').replace('none','')
//	gCCompIDs = ExtractCookies('CComp1').replace('none','')
//alert(gCCompIDs)
	if (gCCompIDs != '')
	{
		CCompOn()
		CCompChOn()
	}
}


function CCompDel()
{
	gCCompIDs = ''
	InsertCookies('CComp',gCCompIDs)
	CCompOff()
	CCompChOff()
}
//----------------------------------------------

