function adsPopup(id) {	// Crea una ventana de publicidad a la derecha y con las mismas dimensiones de la que llama.
	window.moveBy(-screen.width,0); // Antes de crear la ventana, movemos la actual a la izquierda
	url='http://www.botondellamada.com/files/'+id+'/index.html';
	if (typeof(window.innerWidth ) == 'number') {	// Firefox && Opera
		height = window.innerHeight;
		width = window.innerWidth;
	} else if (document.documentElement && (document.documentElement.clientWidth || document.documentElement.clientHeight)) {
		height = document.documentElement.clientHeight;
		width = document.documentElement.clientWidth; 
	} else if (document.body && (document.body.clientWidth || document.body.clientHeight)) {	// IE
		height = document.body.clientHeight;
		width = document.body.clientWidth;
//		height = window.screen.availHeight;
//		width = window.screen.availWidth;
	} else {	// El último recurso.
		height = '500';
		width = '465';
	}
	features='';
	var top = screen.height-(2*height);
	left = screen.width-width;
	newWindow=window.open(''+ url + '',''+ '' + '','height=' + height + ',width=' + width + ',top=' + top + ',left=' + left + ',features=' + features + ''); 
	newWindow.focus();
}

