",
DEFAULTS: {
title: null, // titlebar text. titlebar will not be visible if not set.
closeable: true, // display close link in titlebar?
draggable: true, // can this dialog be dragged?
clone: false, // clone content prior to insertion into dialog?
actuator: null, // element which opened this dialog
center: true, // center dialog in viewport?
show: true, // show dialog immediately?
modal: true, // make dialog modal?
fixed: true, // use fixed positioning, if supported? absolute positioning used otherwise
closeText: '[X]', // text to use for default close link
unloadOnHide: false, // should this dialog be removed from the DOM after being hidden?
clickToFront: true, // bring dialog to foreground on any click (not just titlebar)?
behaviours: Boxy.EF, // function used to apply behaviours to all content embedded in dialog.
afterDrop: Boxy.EF, // callback fired after dialog is dropped. executes in context of Boxy instance.
afterShow: Boxy.EF, // callback fired after dialog becomes visible. executes in context of Boxy instance.
afterHide: Boxy.EF, // callback fired after dialog is hidden. executed in context of Boxy instance.
beforeUnload: Boxy.EF // callback fired after dialog is unloaded. executed in context of Boxy instance.
},
DEFAULT_X: 50,
DEFAULT_Y: 50,
MODAL_OPACITY: 0.08,
zIndex: 1337,
dragConfigured: false, // only set up one drag handler for all boxys
resizeConfigured: false,
dragging: null,
// load a URL and display in boxy
// url - url to load
// options keys (any not listed below are passed to boxy constructor)
// type: HTTP method, default: GET
// cache: cache retrieved content? default: false
// filter: jQuery selector used to filter remote content
/*
url = "/modulos/comunidad/"+codigo+".php?";
options = $.extend({title: titulo}, {closeText: '[X]', cache:true});
Boxy.load(url+param, options);
*/
load: function(url, options) {
options = options || {};
var ajax = {
url: url, type: 'GET', dataType: 'html', cache: false, success: function(html) {
html = jQuery(html);
if (options.filter) {
html = jQuery(options.filter, html);
}
new Boxy(html, options);
}
};
jQuery.each(['type', 'cache'], function() {
if (this in options) {
ajax[this] = options[this];
delete options[this];
}
});
jQuery.ajax(ajax);
},
// allows you to get a handle to the containing boxy instance of any element
// e.g. inspect!.
// this returns the actual instance of the boxy 'class', not just a DOM element.
// Boxy.get(this).hide() would be valid, for instance.
get: function(ele) {
var p = jQuery(ele).parents('.boxy-wrapper');
return p.length ? jQuery.data(p[0], 'boxy') : null;
},
// returns the boxy instance which has been linked to a given element via the
// 'actuator' constructor option.
linkedTo: function(ele) {
return jQuery.data(ele, 'active.boxy');
},
// displays an alert box with a given message, calling optional callback
// after dismissal.
alert: function(message, callback, options) {
return Boxy.ask(message, ['OK'], callback, options);
},
// displays an alert box with a given message, calling after callback iff
// user selects OK.
confirm: function(message, after, options) {
return Boxy.ask(message, ['OK', 'Cancel'], function(response) {
if (response == 'OK') after();
}, options);
},
// asks a question with multiple responses presented as buttons
// selected item is returned to a callback method.
// answers may be either an array or a hash. if it's an array, the
// the callback will received the selected value. if it's a hash,
// you'll get the corresponding key.
ask: function(question, answers, callback, options) {
options = jQuery.extend({modal: true, closeable: false},
options || {},
{show: true, unloadOnHide: true});
var body = jQuery('').append(jQuery('').html(question));
// ick
var map = {}, answerStrings = [];
if (answers instanceof Array) {
for (var i = 0; i < answers.length; i++) {
map[answers[i]] = answers[i];
answerStrings.push(answers[i]);
}
} else {
for (var k in answers) {
map[answers[k]] = k;
answerStrings.push(answers[k]);
}
}
var buttons = jQuery('');
buttons.html(jQuery.map(answerStrings, function(v) {
return "";
}).join(' '));
jQuery('input[type=button]', buttons).click(function() {
var clicked = this;
Boxy.get(this).hide(function() {
if (callback) callback(map[clicked.value]);
});
});
body.append(buttons);
new Boxy(body, options);
},
// returns true if a modal boxy is visible, false otherwise
isModalVisible: function() {
return jQuery('.boxy-modal-blackout').length > 0;
},
_u: function() {
for (var i = 0; i < arguments.length; i++)
if (typeof arguments[i] != 'undefined') return false;
return true;
},
_handleResize: function(evt) {
jQuery('.boxy-modal-blackout').css('display', 'none')
.css(Boxy._documentSize())
.css('display', 'block');
},
_handleDrag: function(evt) {
var d;
if (d = Boxy.dragging) {
d[0].boxy.css({left: evt.pageX - d[1], top: evt.pageY - d[2]});
}
},
_nextZ: function() {
return Boxy.zIndex++;
},
_viewport: function() {
var d = document.documentElement, b = document.body, w = window;
return jQuery.extend(
jQuery.browser.msie ?
{ left: b.scrollLeft || d.scrollLeft, top: b.scrollTop || d.scrollTop } :
{ left: w.pageXOffset, top: w.pageYOffset },
!Boxy._u(w.innerWidth) ?
{ width: w.innerWidth, height: w.innerHeight } :
(!Boxy._u(d) && !Boxy._u(d.clientWidth) && d.clientWidth != 0 ?
{ width: d.clientWidth, height: d.clientHeight } :
{ width: b.clientWidth, height: b.clientHeight }) );
},
_documentSize: function() {
return {height: document.body.offsetHeight};
}
});
Boxy.prototype = {
// Returns the size of this boxy instance without displaying it.
// Do not use this method if boxy is already visible, use getSize() instead.
estimateSize: function() {
this.boxy.css({visibility: 'hidden', display: 'block'});
var dims = this.getSize();
this.boxy.css('display', 'none').css('visibility', 'visible');
return dims;
},
// Returns the dimensions of the entire boxy dialog as [width,height]
getSize: function() {
return [this.boxy.width(), this.boxy.height()];
},
// Returns the dimensions of the content region as [width,height]
getContentSize: function() {
var c = this.getContent();
return [c.width(), c.height()];
},
// Returns the position of this dialog as [x,y]
getPosition: function() {
var b = this.boxy[0];
return [b.offsetLeft, b.offsetTop];
},
// Returns the center point of this dialog as [x,y]
getCenter: function() {
var p = this.getPosition();
var s = this.getSize();
return [Math.floor(p[0] + s[0] / 2), Math.floor(p[1] + s[1] / 2)];
},
// Returns a jQuery object wrapping the inner boxy region.
// Not much reason to use this, you're probably more interested in getContent()
getInner: function() {
return jQuery('.boxy-inner', this.boxy);
},
// Returns a jQuery object wrapping the boxy content region.
// This is the user-editable content area (i.e. excludes titlebar)
getContent: function() {
return jQuery('.boxy-content', this.boxy);
},
// Replace dialog content
setContent: function(newContent) {
newContent = jQuery(newContent).css({display: 'block'}).addClass('boxy-content');
if (this.options.clone) newContent = newContent.clone(true);
this.getContent().remove();
this.getInner().append(newContent);
this._setupDefaultBehaviours(newContent);
this.options.behaviours.call(this, newContent);
return this;
},
// Move this dialog to some position, funnily enough
moveTo: function(x, y) {
this.moveToX(x).moveToY(y);
return this;
},
// Move this dialog (x-coord only)
moveToX: function(x) {
if (typeof x == 'number') this.boxy.css({left: x});
else this.centerX();
return this;
},
// Move this dialog (y-coord only)
moveToY: function(y) {
if (typeof y == 'number') this.boxy.css({top: y});
else this.centerY();
return this;
},
// Move this dialog so that it is centered at (x,y)
centerAt: function(x, y) {
var s = this[this.visible ? 'getSize' : 'estimateSize']();
if (typeof x == 'number') this.moveToX((x - s[0] / 2)); // -50 por mi
if (typeof y == 'number') this.moveToY(y - s[1] / 2);
return this;
},
centerAtX: function(x) {
return this.centerAt(x, null);
},
centerAtY: function(y) {
return this.centerAt(null, y);
},
// Center this dialog in the viewport
// axis is optional, can be 'x', 'y'.
center: function(axis) {
var v = Boxy._viewport();
var o = this.options.fixed ? [0, 0] : [v.left, v.top];
if (!axis || axis == 'x') this.centerAt(o[0] + v.width / 2, null);
if (!axis || axis == 'y') this.centerAt(null, o[1] + v.height / 2);
return this;
},
// Center this dialog in the viewport (x-coord only)
centerX: function() {
return this.center('x');
},
// Center this dialog in the viewport (y-coord only)
centerY: function() {
return this.center('y');
},
// Resize the content region to a specific size
resize: function(width, height, after) {
if (!this.visible) return;
var bounds = this._getBoundsForResize(width, height);
this.boxy.css({left: bounds[0], top: bounds[1]});
this.getContent().css({width: bounds[2], height: bounds[3]});
if (after) after(this);
return this;
},
// Tween the content region to a specific size
tween: function(width, height, after) {
if (!this.visible) return;
var bounds = this._getBoundsForResize(width, height);
var self = this;
this.boxy.stop().animate({left: bounds[0], top: bounds[1]});
this.getContent().stop().animate({width: bounds[2], height: bounds[3]}, function() {
if (after) after(self);
});
return this;
},
// Returns true if this dialog is visible, false otherwise
isVisible: function() {
return this.visible;
},
// Make this boxy instance visible
show: function() {
if (this.visible) return;
if (this.options.modal) {
var self = this;
if (!Boxy.resizeConfigured) {
Boxy.resizeConfigured = true;
jQuery(window).resize(function() { Boxy._handleResize(); });
}
this.modalBlackout = jQuery('')
.css(jQuery.extend(Boxy._documentSize(), {
zIndex: Boxy._nextZ(), opacity: Boxy.MODAL_OPACITY
})).appendTo(document.body);
this.toTop();
if (this.options.closeable) {
jQuery(document.body).bind('keypress.boxy', function(evt) {
var key = evt.which || evt.keyCode;
if (key == 27) {
self.hide();
jQuery(document.body).unbind('keypress.boxy');
}
});
}
}
this.boxy.stop().css({opacity: 1}).show();
this.visible = true;
this._fire('afterShow');
return this;
},
// Hide this boxy instance
hide: function(after) {
if (!this.visible) return;
var self = this;
if (this.options.modal) {
jQuery(document.body).unbind('keypress.boxy');
this.modalBlackout.animate({opacity: 0}, function() {
jQuery(this).remove();
});
}
this.boxy.stop().animate({opacity: 0}, 1, function() {
self.boxy.css({display: 'none'});
self.visible = false;
self._fire('afterHide');
if (after) after(self);
if (self.options.unloadOnHide) self.unload();
});
return this;
},
toggle: function() {
this[this.visible ? 'hide' : 'show']();
return this;
},
hideAndUnload: function(after) {
this.options.unloadOnHide = true;
this.hide(after);
return this;
},
unload: function() {
this._fire('beforeUnload');
this.boxy.remove();
if (this.options.actuator) {
jQuery.data(this.options.actuator, 'active.boxy', false);
}
},
// Move this dialog box above all other boxy instances
toTop: function() {
this.boxy.css({zIndex: Boxy._nextZ()});
return this;
},
// Returns the title of this dialog
getTitle: function() {
return jQuery('> .title-bar h2', this.getInner()).html();
},
// Sets the title of this dialog
setTitle: function(t) {
jQuery('> .title-bar h2', this.getInner()).html(t);
return this;
},
//
// Don't touch these privates
_getBoundsForResize: function(width, height) {
var csize = this.getContentSize();
var delta = [width - csize[0], height - csize[1]];
var p = this.getPosition();
return [Math.max(p[0] - delta[0] / 2, 0),
Math.max(p[1] - delta[1] / 2, 0), width, height];
},
_setupTitleBar: function() {
if (this.options.title) {
var self = this;
var tb = jQuery("").html("
" + this.options.title + "
");
if (this.options.closeable) {
tb.append(jQuery("").html(this.options.closeText));
}
if (this.options.draggable) {
tb[0].onselectstart = function() { return false; }
tb[0].unselectable = 'on';
tb[0].style.MozUserSelect = 'none';
if (!Boxy.dragConfigured) {
jQuery(document).mousemove(Boxy._handleDrag);
Boxy.dragConfigured = true;
}
tb.mousedown(function(evt) {
self.toTop();
Boxy.dragging = [self, evt.pageX - self.boxy[0].offsetLeft, evt.pageY - self.boxy[0].offsetTop];
jQuery(this).addClass('dragging');
}).mouseup(function() {
jQuery(this).removeClass('dragging');
Boxy.dragging = null;
self._fire('afterDrop');
});
}
this.getInner().prepend(tb);
this._setupDefaultBehaviours(tb);
}
},
_setupDefaultBehaviours: function(root) {
var self = this;
if (this.options.clickToFront) {
root.click(function() { self.toTop(); });
}
jQuery('.close', root).click(function() {
self.hide();
return false;
}).mousedown(function(evt) { evt.stopPropagation(); });
},
_fire: function(event) {
this.options[event].call(this);
}
};
/* SWFObject v2.1
Copyright (c) 2007-2008 Geoff Stearns, Michael Williams, and Bobby van der Sluis
This software is released under the MIT License
*/
var swfobject=function(){var b="undefined",Q="object",n="Shockwave Flash",p="ShockwaveFlash.ShockwaveFlash",P="application/x-shockwave-flash",m="SWFObjectExprInst",j=window,K=document,T=navigator,o=[],N=[],i=[],d=[],J,Z=null,M=null,l=null,e=false,A=false;var h=function(){var v=typeof K.getElementById!=b&&typeof K.getElementsByTagName!=b&&typeof K.createElement!=b,AC=[0,0,0],x=null;if(typeof T.plugins!=b&&typeof T.plugins[n]==Q){x=T.plugins[n].description;if(x&&!(typeof T.mimeTypes!=b&&T.mimeTypes[P]&&!T.mimeTypes[P].enabledPlugin)){x=x.replace(/^.*\s+(\S+\s+\S+$)/,"$1");AC[0]=parseInt(x.replace(/^(.*)\..*$/,"$1"),10);AC[1]=parseInt(x.replace(/^.*\.(.*)\s.*$/,"$1"),10);AC[2]=/r/.test(x)?parseInt(x.replace(/^.*r(.*)$/,"$1"),10):0}}else{if(typeof j.ActiveXObject!=b){var y=null,AB=false;try{y=new ActiveXObject(p+".7")}catch(t){try{y=new ActiveXObject(p+".6");AC=[6,0,21];y.AllowScriptAccess="always"}catch(t){if(AC[0]==6){AB=true}}if(!AB){try{y=new ActiveXObject(p)}catch(t){}}}if(!AB&&y){try{x=y.GetVariable("$version");if(x){x=x.split(" ")[1].split(",");AC=[parseInt(x[0],10),parseInt(x[1],10),parseInt(x[2],10)]}}catch(t){}}}}var AD=T.userAgent.toLowerCase(),r=T.platform.toLowerCase(),AA=/webkit/.test(AD)?parseFloat(AD.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,q=false,z=r?/win/.test(r):/win/.test(AD),w=r?/mac/.test(r):/mac/.test(AD);/*@cc_on q=true;@if(@_win32)z=true;@elif(@_mac)w=true;@end@*/return{w3cdom:v,pv:AC,webkit:AA,ie:q,win:z,mac:w}}();var L=function(){if(!h.w3cdom){return }f(H);if(h.ie&&h.win){try{K.write("