// JavaScript Document
function sh(divek)
{
	txt =document.getElementById(divek+"_txt");	
	div=document.getElementById(divek);

	if(div.style.display=='block')
	{
		div.style.display='none';
		if(txt)
		{
			txt.innerHTML="rozwi&#324;";
			txt.className="karty_rozwin_txt";
		}
	}
	else 
	{
		div.style.display='block';
		if(txt)
		{
			txt.innerHTML="zwi&#324;";
			txt.className="karty_zwin_txt";
		}
	}

};


function DivOnOf(n,off)
{
		div=document.getElementById(n);
		div2=document.getElementById(off);
		
		if (div) div.style.display= div.style.display=='block' ? "none":"block"; 	
		if (div2) div2.style.display= "none"; 
			
};

function FaqOnOff(divek,forced)
{
	div=document.getElementById(divek);
	if(!div ) return;
	if (forced!="none" && forced!="block")
		div.style.display = div.style.display=='block' ? "none":"block";
	else
		div.style.display = forced;
};

function FaqRozwin(typ)
{
	
	for (i=0;i<faq_divs.length;i++)	FaqOnOff(faq_divs[i],typ);

};

function popUp(popUp_url, popUp_name, popUp_specs, popUp_replace){
	window.open(popUp_url, popUp_name, popUp_specs, popUp_replace);
};


function oddzialGoTo(url,src)
{
	document.location.href=url + "?id=" + (src.options[src.options.selectedIndex].value);	
	
};
 function Search(url,src)
 {
	   
	  document.location.href=url + "?zoom_query="+ (src.value) + "&zoom_per_page=10&zoom_and=0&zoom_sort=0" ;	
 	  return false;
  };
 


function OpenWindow(link, width,height,resizable,scroll)
{
  if (resizable=="") resizable = "yes";    
  if (scroll=="") scroll = "no";
    var aa = window.open(link, "WND", "width="+ width + ",height=" + height + "titlebar=yes,status=yes,left=100,top=100,toolbar=no,menubar=no,location=no,resizable=" + resizable +",scrollbars=" + scroll + ",fullscreen=no");
  aa.focus();
};
//formularz rejestracyjny DMBH
function RegForm()
{
    OpenWindow("/ids/gohttpsbind.cgi?/securemail/last.sm?path=/poland/dmbh/polish/reg_form/", 880,800,"no","yes");
};
