function posa_banner(id_campanya_tipo,id_campanya_banner,id_campanya_ubicacion,ruta_banners){
//Tipos
// 1 .- Banner
// 2.- Caixa
// 3.- Megahome
// 4.- Sky 1024

var width="";
var height="";
var layer=false;
var newwin=false;
var archivo="banners.php";

	pantalla=screen.width;
	if(id_campanya_tipo==2){
		//caixa
		width="140";
		height="160";
	}else if(id_campanya_tipo==1){
		//banner
		width="468";
		height="60";
	}else if(id_campanya_tipo==3){
		//megahome
		width="200";
		height="200";
	}else if(id_campanya_tipo==4){
		//megahome
		width="140";
		height="400";
	}
	/*
	if((id_campanya_tipo==4)&&(pantalla>=1024)){
		if(pantalla>=1024){
			width="120";
			height="400";
		}
		document.write('<div id="sky1024" style="position:absolute; left:800px; top:20px; width:120; height:600; z-index:20">');
		document.write('<iframe src="'+ruta_banners+archivo+'?id_campanya_banner='+id_campanya_banner+'&id_campanya_ubicacion='+id_campanya_ubicacion+'&width='+width+'&height='+height+'" width="'+width+'" height="'+height+'" frameborder="0" scrolling="no"></iframe>');
		document.write('</div>');
	}else 
	*/
	if((id_campanya_tipo!=3)){
		document.write('<iframe src="'+ruta_banners+archivo+'?id_campanya_banner='+id_campanya_banner+'&id_campanya_ubicacion='+id_campanya_ubicacion+'&width='+width+'&height='+height+'" width="'+width+'" height="'+height+'" frameborder="0" scrolling="no"></iframe>');
	}
}