
function set_region_tbl(country_id, region_id, region_alt){
	
	//alert(country_id);
	//alert(document.getElementById(country_id).value)
	if(document.getElementById(country_id).value=='Polska'){ 
		document.getElementById(region_id).style.display='inline';
		document.getElementById(region_alt).style.display='none';
 
	}
	else{ 
		document.getElementById(region_id).style.display='none';
		document.getElementById(region_alt).style.display='inline';
 
	}
}



//POP-UP-ZDJECIA////////////////////////////////////////////////////////////////////////
function ImgWinOpen(file,title,w,h)
{
     look='';
     sbars = 0;
     resize = 0;
     if(w > screen.availWidth)
     {
     		w = screen.availWidth-30;
     		sbars = 1;
     		resize = 1;
     }
     if(h > screen.availHeight)
     {
     		h = screen.availHeight-60;
     		sbars = 1;
     		resize = 1;
     }
     
	  look = 'scrollbars='+sbars+', resizable='+resize+', width='+w+',height='+h+'';
     newWin = window.open(file,'newWindow','toolbar=0,location=0,'+look);
	  newWin.document.write("<html><head><title>"+title+"</title></head>");
	  newWin.document.write("<body leftmargin=0 rightmargin=0 topmargin=0 bottommargin=0 marginwidth=0 marginheight=0 margin=0 onClick='window.close();' style='cursor:pointer;'><img src=" +file+ " / alt='Kliknij, aby zamknąć okno'>");
	  newWin.document.write("</body></html>");
	 
}

function display_block(T,t){
 T.style.display=t?'block':'none'
}
