    function openModal(url,width,height,bscroll){
      $("#modalwindow").show();
       $("#modalwindow").css({'width' : width, 'height' : height});
       $("#modalwindow").css({'margin-top' : -height/2,'margin-left' : -width/2});
      $("body").css({overflow:"hidden"});
      $('#modalbody').html('<iframe src="'+url+'" width="'+width+'" height="'+height+'" frameborder="0" scrolling="'+bscroll+'"></iframe>'); 
      $("#cover").show();
      window.scrollTo(0,0);
      return false;
    }
    
    function closeModal(){
      $('#modalbody').html('');
      $("#modalwindow").hide();
      $("#cover").hide();
      $("body").css({overflow:"visible"});
      return false;
    }
