// JavaScript Document


function cambiaTam(alto){
	//var flash = document.getElementById('FlashID');
	//flash.style.height = alto + "px";
	var DIV = document.getElementById('flashdiv');
	//en el flash está metido con una desviación de 20, así que le resto unos cuantos
	alto = alto - 15;
	DIV.style.height = alto + "px";
	
}

function recibeLlamada(apartado, subapartado){
	document.location.href = 'index.php?ap='+apartado+'&sub='+subapartado;
	//alert(apartado + "--" + subapartado);
}

function setFlashHeight(divid, newH){
	document.getElementById(divid).style.height = newH+"px";		
}

function abreAsociado(id){
	window.open("asociado.php?id="+id, '_blank', 'menubar=1,resizable=1, width=400,height=400, scrollbars=yes');
}

function abreNoticia(id){
	window.open("noticia.php?id="+id, '_blank', 'menubar=1,resizable=1, width=600,height=500, scrollbars=yes');
}

function abreOferta(id){
	window.open("oferta.php?id="+id, '_blank', 'menubar=1,resizable=1, width=600,height=500, scrollbars=yes');
}