<!--
	function winH() {
	   if (window.innerHeight)
	      /* NN4 a kompatibilní prohlížeče */
	      return window.innerHeight;
	   else if
	   (document.documentElement &&
	   document.documentElement.clientHeight)
	      /* MSIE6 v std. režimu - Opera a Mozilla
	      již uspěly s window.innerHeight */
	      return document.documentElement.clientHeight;
	   else if
	   (document.body && document.body.clientHeight)
	      /* starší MSIE + MSIE6 v quirk režimu */
	      return document.body.clientHeight;
	   else
	      return null;
	}
	
	function init_imgover(imgsrc,imgw,imgh)
	{
		fromtop=document.body.scrollTop;
		e=document.getElementById('ol');
		eio=document.getElementById('io');
		e.className='imgover';
		height=winH();
		bheight=document.body.scrollHeight;
		if (bheight>height) oh=bheight; else oh=height;
		e.style.height=oh;
	
		et=(height-imgh)/2+fromtop;
		eio.className='imgover-img';
		eio.style.top=et+'px';
		eio.innerHTML='<img src="'+imgsrc+'" alt="" width="'+imgw+'" height="'+imgh+'" border="0" onclick="closeimgover()" id="iim" title="Klikem zavřít obrázek"><img src="image-page/img_over_close.gif" alt="" width="0" height="0" border="0" class="close" id="oiclose">';
		document.getElementById('oiclose').style.left=(document.body.scrollWidth+imgw)/2-18;
		document.getElementById('oiclose').style.top=9;
	}
	
	function closeimgover()
	{
		e=document.getElementById('ol');
		eio=document.getElementById('io');
		e.className='imgover-hidden';
		eio.className='imgover-hidden';
	}
//-->


  function GetOrderData(obj) {
    document.filtr.order.value=obj.value;
  }

  var bStop = 0;
  var oldWidth = 0;
  var oldHeight = 0;
  function SrollImage(intDirection){
    var i = document.getElementById("ImageBody").scrollLeft;
    var ii;
    if(intDirection == 1){
    	document.getElementById("ImageBody").scrollLeft = -20 + i;
    	ii = document.getElementById("ImageBody").scrollLeft;
    	if(i > ii && bStop == 0){setTimeout("SrollImage(1)",50)}
    }else{
    	document.getElementById("ImageBody").scrollLeft = 20 + i;
    	ii = document.getElementById("ImageBody").scrollLeft;
    	if(i < ii && bStop == 0){setTimeout("SrollImage(2)",50)}
    }
  }
  
  function onClickImg(images,width,height) {
   // document.images.img_ramec.src="/gastrojesenikludek/image.php?src="+images;
    
    var nChar='"';
    document.getElementById('a_image').innerHTML = "<a href="+nChar+"javascript:init_imgover('/gastrojesenikludek/detail.php?src="+images+"',"+width+","+height+")"+nChar+"><img id="+nChar+"img_ramec"+nChar+" src="+nChar+"/gastrojesenikludek/image.php?src="+images+nChar+" border="+nChar+"0"+nChar+"></a>";

  }

function setCookie(c_name,value,expiredays)
{
  var exdate=new Date();
  exdate.setDate(exdate.getDate()+expiredays);
  document.cookie=c_name+ "=" +escape(value)+
  ((expiredays==null) ? "" : ";expires="+exdate.toGMTString());
}
