/*******************************************************/
/* IE fix for Bar Minheight                            */
/*******************************************************/
/* JS document for http://www.imaxbudapest.hu website  */
/* Copyright 2007 anaiz                                */
/* contact developer at info@anaiz.hu                  */
/*                      wwww.anaiz.hu                  */
/*******************************************************/

startList = function() {
if (document.all && document.getElementById) {
  bar = document.getElementById("minSize");
  if (bar.clientHeight<500) {
    bar.style.height = 500;
  }
  else
  {
    // alert('good good!');
  }
 }
}


window.onload=startList;
