function popup(_object) {
    if(typeof(_object._height) == "undefined")  {	_object._height  = 600; }
	if(typeof(_object._width) == "undefined")   {	_object._width   = (screen.availWidth?screen.availWidth:800); }
	if(typeof(_object._top) == "undefined")  {	_object._top  = (screen.availHeight/2) - (_object._height/2); }	
	if(typeof(_object._left) == "undefined") {	_object._left = (screen.availWidth/2)  - (_object._width/2);  }	
	if(typeof(_object._scrollbar) == "undefined") {	_object._scrollbar = "0"; }
	if(typeof(_object._status) == "undefined") {	_object._status = "0"; }
	if(typeof(_object._resizable) == "undefined") {	_object._resizable = "0"; }
	if(typeof(_object._name) == "undefined") {	_object._name = "default"; }
	// creamos la ventana
	var win = window.open(_object._url, _object._name , "toolbar=0,scrollbars=" + _object._scrollbar + ",location=0,status=" + _object._status + ",menubar=0,resizable=" + _object._resizable + ",width=" + _object._width + ",height=" + _object._height + ",left=" + _object._left + ",top=" + _object._top + "");
	if(!win){
		if(confirm("neltic.mx intentaba mostrarte el contenido solicitado en una ventana emergente (popup), pero no tuvo éxito, por favor agregar a neltic.mx dentro de tus sitios permitidos para ventanas emergentes para que el contenido se muestre correctamente; si te resulta muy complicado, no quieres o te da flojera hacerlo, puedes dar clic en 'Aceptar' para mostrar el contenido bloqueado en la pagina actual.\n\n¿Quieres ver el contenido bloqueado en la página actual?")) {
		document.location = _object._url;			
		}
	}
	_object = null;
}

