
  function setHomePage(obj) {

    var ua = navigator.userAgent.toLowerCase();
    if ( (ua.indexOf("msie") != -1) && (ua.indexOf("opera") == -1) && (ua.indexOf("webtv") == -1) ){
          obj.setAttribute('href','javascript:void(0)');
          obj.style.behavior='url(#default#homepage)';
          obj.setHomePage('http://www.agipro.cz');
    }

    return false;
  }



  function openWindow(whr,pageWidth,pageHeight){

    if (pageWidth == null){
        pageWidth = 800;
    }
    if (pageHeight == null){
        pageHeight = 450;
    }

    window.open(whr,'_blank','width='+pageWidth+',height='+pageHeight+',menubar=1,scrollbars=1,resizable=1,toolbar=0,location=0,directories=0,status=0,left=30,top=20');

    return false;
  }

