<!--
	function crear(url, width, height) {
		if (height > (window.screen.height - 100)) {
			height = window.screen.height - 100;
			scrollbars = "yes";
		}
		else
			scrollbars = "no";

		controlador=window.open(url, "ventana1", "scrollbars=" + scrollbars + ",resizable=no,menubar=no,toolbar=no,width=" + width + ",height=" + height + ",top=" + (window.screen.height/2 - height/2) + ",left=" + (window.screen.width/2 - width/2));
		controlador.focus();
	}
	function modificar(url, width, height) {
		scrollbars = "yes";
		if (height > (window.screen.height - 100)) {
			height = window.screen.height - 100;
			
		}
		else {
			
		}
		


		controlador=window.open(url, "ventana1", "scrollbars=" + scrollbars + ",resizable=no,menubar=no,toolbar=no,width=" + width + ",height=" + height + ",top=" + (window.screen.height/2 - height/2) + ",left=" + (window.screen.width/2 - width/2));
		controlador.focus();
	}
	function eliminar(url) {
		if (confirm('¿Desea eliminar el registro seleccionado?'))
			location.href=url;
	}
	
	function eliminar_productos(url){
		if (confirm('¿Desea eliminar los productos de esta categoria?'))
			location.href=url;
	}
// -->
