// var $_getVariables = {isset:false},
// 	$_getGlobalVariables = {},
// 	$_GETAllVariables = function() {
// 		var scripts = document.getElementsByTagName("script");
// 		for(var i=0;i<scripts.length;i++) {
// 		    var script = (scripts[i].src+"").split("/");
// 		    script = script[script.length-1].split("?",2);
// 		    if(script.length>1) {
// 		        var parameters = script[1].split("&")
// 		        for (var j=0;j<parameters.length;j++){
// 		            var vars = parameters[j].split("=");
// 		            if (!$_getVariables[script[0]]) $_getVariables[script[0]] = {};
// 		            $_getVariables[script[0]][vars[0]]=vars[1];
// 		            $_getGlobalVariables[vars[0]]=vars[1];
// 		        }
// 		    }
// 		}
// 		$_getVariables.isset=true;
// 	};
// $_GET = function(paramToGet,jsFile) {
// 	if(!$_getVariables.isset) {
// 		$_GETAllVariables();
// 	}
// 	if(jsFile) {
// 		return $_getVariables[jsFile][paramToGet];
// 	} else {
// 		return $_getGlobalVariables[paramToGet];
// 	}
// };

// $(document).ready(function() {
// 	var bannerpop_img = 'https://cstatic.weborama.fr/advertiser/3585/17/260/272/800X600.gif',//$_GET("img"),
// 		bannerpop_url = $_GET("url"),
// 		bannerpop_size = $_GET("size").split("x"),
// 		bannerpop_width = bannerpop_size[0],
// 		bannerpop_height = bannerpop_size[1];

// 	var bannerpop_name = 'bannerpop_div_promo';

// 	var style = document.createElement('style');
// 		style.type = 'text/css';
// 		style.innerHTML =
// 			'#'+bannerpop_name+' {'+
// 				'position: fixed;'+
// 				'background: rgba(0, 0, 0, 0.3);'+
// 				'top: 0;'+
// 				'left: 0;'+
// 				'width: 100%;'+
// 				'height: 100%;'+
// 				'z-index: 999999;'+
// 			'}'+
// 			'#'+bannerpop_name+'_close {'+
// 				'display: block;'+
// 				'position: absolute;'+
// 				'width: 180px;'+
// 				'height: 24px;'+
// 				'line-height: 24px;'+
// 				'top: 10px;'+
// 				'right: 10px;'+
// 				'padding: 10px 20px;'+
// 				'-border-radius: 16px;'+
// 				'-moz-border-radius: 16px;'+
// 				'-ms-border-radius: 16px;'+
// 				'-o-border-radius: 16px;'+
// 				'border-radius: 16px;'+
// 				'border: 2px solid rgba(255,255,255,0.9);'+
// 				'background: rgba(0,0,0,1);'+
// 				'font-size: 20px;'+
// 				'text-align: center;'+
// 				'text-decoration: none;'+
// 				'color: #FFF;'+
// 				'font-family: Arial,Helvetica,sans-serif;'+
// 			'}'+
// 			'#'+bannerpop_name+'_url {'+
// 				'position: fixed !important;'+
// 				'display: block;'+
// 				'width: '+bannerpop_width+'px;'+
// 				'height: '+bannerpop_height+'px;'+
// 				'top: 50%;'+
// 				'left: 50%;'+
// 				'margin: -'+(bannerpop_height/2)+'px 0 0 -'+(bannerpop_width/2)+'px;'+
// 				'z-index: 999999;'+
// 			'}';
// 	document.getElementsByTagName('head')[0].appendChild(style);


// 	var bannerpop_div = document.createElement('div');
// 		bannerpop_div.id = bannerpop_name;
// 	document.body.appendChild(bannerpop_div);
// 	var bannerpop_div_close = document.createElement('a');
// 		bannerpop_div_close.id = bannerpop_name+'_close';
// 		bannerpop_div_close.href = 'javascript:;';
// 		bannerpop_div_close.innerHTML = 'Cerrar publicidad';
// 		bannerpop_div_close.onclick = function() {
// 			document.getElementById(bannerpop_name).style.display = "none";
// 		};
// 	document.getElementById(bannerpop_name).appendChild(bannerpop_div_close);

// 	// var bannerpop_div_url = document.createElement('a');
// 	// 	bannerpop_div_url.id = bannerpop_name+'_url';
// 	// 	bannerpop_div_url.href = 'javascript:;';
// 	// var bannerpop_div_img = document.createElement('img');
// 	// 	bannerpop_div_img.src = bannerpop_img;
// 	// document.getElementById(bannerpop_name).appendChild(bannerpop_div_url);
// 	// document.getElementById(bannerpop_div_url.id).appendChild(bannerpop_div_img);


// 	// var bannerpop_div_iframe = document.createElement('iframe');
// });
