﻿function MM_jumpMenu(targ,selObj,restore){ //v3.0
  //eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  //if (restore) selObj.selectedIndex=0;//
  if (selObj.selectedIndex!=0){
  	abrirFilial(selObj.options[selObj.selectedIndex].value);
  }
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}
function abrirFilial(theURL) { //v2.0
//abre una nueva url desde el combo en el menú principal
	features="toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes";
	filial="win"
	window.open(theURL,filial,features);
}

function abrirEvento(theURL) { //v2.0
//amplia el evento en Agenda. Los html los arman en FCE
	features="toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=650,height=550";
	win="evento"
	window.open("../../archivos/agenda/"+theURL,win,features);
}

function abrirPopUpHome(theURL) { //v2.0
//abre un popup desde la pagina de Inicio. Los html los arman en FCE
	features="toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=650,height=550";
	win="evento"
	window.open("../../"+theURL,win,features);
}

function CargarEnvios(){
//abre un popup con los costos de envios
	features="toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=650,height=550";
	win="cosots"
	window.open("/ar/compras/Costos.aspx",win,features);
    
}


