<!-- //
	function abrir_ventana (vurl, vnom, vanc, valt) {		
		var vnom;
		ventana=open(vurl,vnom,"resizable=no,scrollbars=yes,status=yes,width=" + vanc + ",height=" + valt + ",top=20,left=20");
		ventana.focus();		
	}
	
	function cerrar_ventana() {
		window.close();
	}
	
	function volver() {
		history.go(-1)
	}
	
	function eliminar_item (num_item, nom_item, sec_item) {
      tipo_item="el producto ";
      if (sec_item == "ac") { tipo_item="la categoría "; }
      if (window.confirm("¿Está seguro de querer eliminar " + tipo_item + nom_item + " de la base de datos? ")) {
         document.location.href="?p=" + sec_item + "&s=el&f_id=" + num_item;        
      }	
   }
   
   function saltar_categoria(des,obj,res) {
      eval(des+".location='?c="+obj.options[obj.selectedIndex].value+"'");
      if (res) obj.selectedIndex=0;
   }
	
	function mostrar_mensaje(m_msg) {
		alert (m_msg);
	}
// -->