/**
 * Check for global PLUGIN namespace
 */
if(!$chk(PLUGIN)) {
    var PLUGIN = {};
}

/**
 * Redirect for the banners
 * @param {String} destination
 * @param {String} target
 */
PLUGIN.redirect = function(destination, target) {
	window.open(destination, target);
	return false;
}
