var oldID = null;

var lastID = 0;



function meniu(id, itemObj, ChCount) { 

	if (itemObj && ChCount > 0) {

		itemObj.href="#";

	}

	

	if (document.getElementById(id) != null) {

		if (oldID != id) {

			document.getElementById(id).style.display = "block";

			if (oldID != null) {

				document.getElementById(oldID).style.display = "none";

			}

			oldID = id;

		} else {

			document.getElementById(id).style.display = "none";

			oldID = null;

		}

	}

}



var a = 0;

function tikrink()

{

  a = 1;

}



function tikrink2()

{

  if (a == 0 && document.getElementById('no_item')) document.getElementById('no_item').style.display='block';

}



function centerPOP(URL,w,h)

{

	sw = (screen.width - w) / 2;

	sh = (screen.height - h) / 2;

	window.open(URL,null,'height='+h+',width='+w+',status=0,toolbar=0,menubar=0,location=0,scrollbars=1,top='+sh+',left='+sw+'')

}





function show_meniu_mindaugas(id, open)

{

	if (document.getElementById(id))

		var element = document.getElementById(id);

	

	if (lastID == id && !open)

	{

		lastID = 0;

	}

	

	if (element)

	{

		//ziuri ar jis isskleistas ar suskleistas

		if (element.style.display == "none")

		{

			element.style.display = "block";

		}

		else

		{

	

			element.style.display = "none";

		}

		

	}



	

	if (lastID != 0 && !open)

	{

		//if (document.getElementById(lastID))

			//document.getElementById(lastID).style.display = "none";

	}

	

	lastID = id;

}



function openMenus(id)

{

	var tempID;

	//alert(id);

	

	if (parents[id] != "" && parents[id] != undefined)

	{

		tempID = parents[id];

		lastID = tempID;

		//alert(id + " : " + tempID);

		if (parents[tempID] != "" && parents[tempID] != undefined)

		{

			//alert(tempID);

			show_meniu_mindaugas("list" + parents[tempID], true);

			

			lastID = parents[tempID];

		}

		

		show_meniu_mindaugas("list" + tempID, true);

	}

	

	show_meniu_mindaugas("list" + id, true);

}



window.onload=set_pos_new;

window.onresize=set_pos_new;



function set_pos_new(){

  setTimeout("do_bott()",300);

}



function do_bott(){

  var minusas=210;//386;

  

  if(document.images && document.images.scr_h){

    document.images.scr_h.height=1;

    var agt = navigator.userAgent.toLowerCase();



    if(document.all){            

      if(typeof((document.body.offsetHeight)=='undefined' || (agt.indexOf("msie")==-1) && agt.indexOf("gecko")!=-1) || (agt.indexOf("msie 7.0")>0) || (agt.indexOf("opera")>0)){

        hh=document.body.scrollHeight;

        if ((agt.indexOf("msie 7.0")>0)||(agt.indexOf("msie 6.0")>0)) {

          hh = (((document.documentElement.scrollHeight)>(document.documentElement.clientHeight)) ? (document.documentElement.scrollHeight):(document.documentElement.clientHeight));

        }

      }

      else {

        hh=document.body.offsetHeight+((agt.indexOf("msie") != -1 && (agt.indexOf("opera") == -1))?(-4):0);

      }

    }

    else {

      if (agt.indexOf("mozilla")>=0) {//mozilai

        hh = window.innerHeight + window.scrollMaxY;

      }

      else

        hh=document.body.scrollHeight;

    }

    document.images.scr_h.height=(((hh-minusas)>0) ? (hh-minusas):1);

  }



}