var hostUrl = "";
var iFrameCtrl;
var componentActId;
function InitIFrameCtrl(hUrl){
    document.writeln('<iframe id="_Inmofactory_Ib2c_Ctrl" scrolling="no" marginheight="0" marginwidth="0" style="visibility:hidden; width:1px; height:1px;" ><\/iframe>');
    iFrameCtrl = document.getElementById("_Inmofactory_Ib2c_Ctrl");    
    hostUrl = "http://" + hUrl + "/inmofactory_ib2c.html";         
}

function SendInfo2IFrameCtrl(componentId){
   // c0 = Escritorio
   // c1 = BuscadorCompacto
   // c2 = BuscadorRefMini
   // c3 = OfeDestacadasRd  

       componentActId = componentId;          
       // Dimensiones 
       if (iFrameCtrl != undefined && iFrameCtrl != null) {
           doc = document.documentElement;
           docW = doc.scrollWidth;
           docH = doc.scrollHeight;           
           iFrameCtrl.src = hostUrl + "#ib2c_cid=" + componentId + "&ib2c_w=" + docW + "&ib2c_h=" + docH;
       }             
       
}

function SendOp2IFrameCtrl(op){
   // Operaciones   
   if (iFrameCtrl != undefined && iFrameCtrl != null) {           
       iFrameCtrl.src = hostUrl + "#" + op;
   }
}
