var popup;

function ridimensiona(){
 var myHeight=document.body.offsetHeight;
 if(document.body.scrollHeight){
     myHeight=document.body.scrollHeight;
 }
 parent.document.getElementById("Modulo_Ecommerce").style.height=myHeight+20+"px";
}
function scrollUP(){
   try{
      parent.window.scrollTo(0,0);
   }catch(e){
   }
   try{
      top.window.scrollTo(0,0);
   }catch(e){
   }
   

}

function apriPopup(conferma,url,nome_popup,width,height){
    var status=false;
    if(conferma!=null&&conferma!=""){
       if(confirm(conferma)){
           status=true;
       }
    }
    else{
       status=true;
    }
    if(status){
          if(popup!=null&&!popup.closed)
              popup.close();
          popup=window.open(url,nome_popup,"width="+width+", height="+height+", resizable=yes, scrollbars=yes");
          popup.focus();
    }
}
