
var int = window.setInterval("clock()", 2000);

//Funcion que detecta que se ha cargado la capa 'subfoot'
function clock() {
	var subfoot = document.getElementById("subfoot");
	if (subfoot != null) {
		append(subfoot);
		clearInterval(int);
	}
}

//Funcion que crea un iframe y mete la pagina del banner
function append(subfoot) {
	var div = document.createElement('div');
	div.setAttribute('id', 'subfootbanner');
	div.setAttribute('align', 'center');
	
	var iframe = document.createElement('iframe');
	iframe.setAttribute('src', 'http://stc.sand.msn-int.com/br/intl/ES/banner/banner728.html');
	iframe.setAttribute('frameborder', '0');
	iframe.setAttribute('scrolling', 'no');
	iframe.setAttribute('width', '728');
	iframe.setAttribute('height', '110'); //90 + 20
	
	div.appendChild(iframe);
	subfoot.appendChild(div);

}
