var w,h,timer;
function checkAgrandi(where){
	if(timer) clearTimeout(timer);
	timer=setTimeout("checkAgrandiT()",500);
	checkAgrandiT();
}
function checkAgrandiT(){
	var obj=document.getElementById('flashcontent');
	var obj2=document.getElementById('footer');
	if(obj&&obj2){
//	obj2.style.position="absolute";
	obj2.style.top=(obj.offsetHeight-28)+"px";
	obj2.style.width=obj.offsetWidth+"px";
	}
}