var awindowPopup;
var awindow;

function fn_crearPopup(URL,nombre,ancho,alto,pos_left,pos_top,conScroll){
				awindowPopup=window.open(URL,nombre,"left ="+pos_left+",top="+pos_top+",width="+ancho+",height="+alto+", menubar =NO,titlebar=NO,directories=NO,toolbar =NO,location=NO, resizable=NO,scrollbars="+conScroll);
}

function fn_abrirPopup(url,nombre,ancho,alto,pos_left,pos_top, conScroll){

	   if(awindowPopup==null || awindowPopup=="" || awindowPopup.closed){
			fn_crearPopup(url,nombre,ancho,alto,pos_left,pos_top, conScroll);
	   }else if(!awindowPopup.closed){
	        //awindowPopup.location.href=url;
	        awindowPopup.close();
			//awindowPopup.focus();
			fn_crearPopup(url,nombre,ancho,alto,pos_left,pos_top, conScroll);
	  }
 }

 function popupAyuda(url){
     fn_abrirPopup(dominioBase(0)+ url,"popupAyuda",600,500,100,100, "NO");
 }


 function fn_crearWindow(URL,nombre,ancho,alto,pos_left,pos_top){
 				awindow=window.open(URL,nombre,"left ="+pos_left+",top="+pos_top+",width="+ancho+",height="+alto+", menubar =YES,titlebar=YES,directories=YES,toolbar =YES,location=YES, resizable=YES,scrollbars=YES");
 }

 function fn_actualizarWindowOpener(url,nombre,ancho,alto,pos_left,pos_top){
        awindow=window.opener;
 	   if(awindow==null || awindow=="" || awindow.closed){
 			fn_crearWindow(url,nombre,ancho,alto,pos_left,pos_top);
 	   }else if(!awindow.closed){
 	        awindow.location.href=url;
 			awindow.focus();
 	  }
  }


function fn_popup(tipo){
	 if (tipo=='cmraldia'){
                  fn_abrirPopup(dominioBase(0)+"/viveCMR/popupViveCMR.html","viveCMR",502,522,100,100, "NO");
	 }
	 else if (tipo=='vivecmr'){
                  fn_abrirPopup(dominioBase(0)+"/viveCMR/popupViveCMR.html","viveCMR",502,522,100,100, "NO");
	 }
	 else if (tipo=='cmrpuntos'){
                  fn_abrirPopup(dominioBase(0)+"/cmrpuntos/index-cata.shtml","cmrpuntos",762,520,100,100, "NO");
	 }

	 else if (tipo=='recargaAloEntel'){
                  //nuevaVentana = window.open('https://ventas.entelpcs.cl/cmr/','venalo',"resizable=yes,height=230,width=700,toolbar=yes,menubar=yes,scrollbars=yes");
                  nuevaVentana = window.open('http://vasp.entelpcs.cl/acceso_2/entrada.php?IDP=&Sistema=2251','venalo',"resizable=yes,height=190,width=450,toolbar=yes,menubar=yes,scrollbars=yes");

	 }
	 else if (tipo=='recargaTelefonicaMovil'){
                  fn_abrirPopup("http://www.telefonicamovil.cl/include/recarga_tmovil_cmr/index.asp","popupTelMovil",474,370,150,20, "NO");
	 }

	 else if (tipo=='tasasEfectivas'){
                  fn_abrirPopup(dominioBase(0)+"/popup/tasasEfectivas.html","verTasasEfectivas",720,500,150,30, "YES");
	 }

  	 else if (tipo=='ubicacionTiendas'){
                  fn_abrirPopup(dominioBase(0)+"/popupUHTiendas.shtml","verUbicacionTiendas",520,500,150,30, "NO");
	 }

}

function dominioBase(tipo){
  if(tipo==0){
   return "http://www.cmrfalabella.com/cmr";
  }else{
   return "https://www.cmrfalabella.com/cmr";
  }
}
