	function open_close(div1,div2){

		var test1= document.getElementById(div1);
		var test2= document.getElementById(div2);

		if(parseInt(test1.style.height)>0){

			var nazwa2=div1+"_content"; var cnt= document.getElementById(nazwa2); cnt.style.display='none';
			for(r=0;r<39;r++){
			 var time=r*10;
			 setTimeout(function(){zamowienie_slide2(div1,5,195);},time);
			}

		} else {
			for(r=0;r<39;r++){
			 var time=r*10;
			 setTimeout(function(){zamowienie_slide1(div1,5,195);},time);
			}

		}

		if(parseInt(test2.style.height)>0){
			var nazwa2=div2+"_content"; var cnt= document.getElementById(nazwa2); cnt.style.display='none';
			for(l=0;l<50;l++){
			 var time=l*8;
			 setTimeout(function(){zamowienie_slide2(div2,2,95);},time);
			}

		} else {
			for(l=0;l<50;l++){
			 var time=l*8;
			 setTimeout(function(){zamowienie_slide1(div2,2,95);},time);
			}

		}

	}

	function open_close2(div1){

		var test1= document.getElementById(div1);

		if(parseInt(test1.style.height)>0){

			var nazwa2=div1+"_content"; var cnt= document.getElementById(nazwa2); cnt.style.display='none';
			for(r=0;r<50;r++){
			 var time=r*8;
			 setTimeout(function(){zamowienie_slide2(div1,2,95);},time);
			}

		} else {
			for(r=0;r<50;r++){
			 var time=r*8;
			 setTimeout(function(){zamowienie_slide1(div1,2,95);},time);
			}

		}

	}



	function open_close3(div1){

		var test1= document.getElementById(div1);

		if(parseInt(test1.style.height)>0){

			var nazwa2=div1+"_content"; var cnt= document.getElementById(nazwa2); cnt.style.display='none';
			for(r=0;r<60;r++){
			 var time=r*8;
			 setTimeout(function(){zamowienie_slide2(div1,2,95);},time);
			}

		} else {
			for(r=0;r<60;r++){
			 var time=r*8;
			 setTimeout(function(){zamowienie_slide1(div1,2,95);},time);
			}

		}
	

	}


		function zamowienie_slide1(nazwa,ile,show){
			var promoplus= document.getElementById(nazwa);
				promoplus.style.height = parseInt(promoplus.style.height) + ile + "px";
				if(parseInt(promoplus.style.height)>=show){
				var nazwa2=nazwa+"_content"; var cnt= document.getElementById(nazwa2); cnt.style.display='block';
				}
		}

		function zamowienie_slide2(nazwa,ile){
			var promoplus= document.getElementById(nazwa);
			promoplus.style.height = parseInt(promoplus.style.height) - ile + "px";
		}
