
function showDivAutor(id)
{	

	document.getElementById('idAutors').display = '';
	getMyHTML('autor.asp?idAutor='+id, 'idAutors') 

/*	if (xScrollTop()<340 )
	{
	document.getElementById('idAutors').style.top='340px'
	}
	else
	{*/
	document.getElementById('idAutors').style.top=(xScrollTop()+340)+'px'
/*	}*/

function mueve_Autor(){
   xMoveTo("idAutors",340,xScrollTop()+340)
} 

window.onscroll=mueve_Autor
	
//	TB_animateWindow(10,10)
	
}
function HiddenDivAutor()
{	
	document.getElementById('idAutors').style.width='0'
	document.getElementById('idAutors').style.height='0'
	document.getElementById('idAutors').innerHTML='' ;
	document.getElementById('idAutors').display = '';
//	TB_animateWindow(10,10)
	
}

function showBio(id)
{
//window.open	('BioAutor.asp?idAutor='+id, 'DetallAutor') 
	getMyHTML('BioAutor.asp?idAutor='+id, 'DetallAutor') 
}
function listObres(id)
{
	getMyHTML('detallAutor.asp?idAutor='+id, 'DetallAutor') 
}


function TB_animateWindow(windowWidth,windowHeight)

 {

//	document.getElementById('idAutors').style.filter='alpha(opacity='+windowWidth+')';
	document.getElementById('idAutors').style.width=	windowWidth+'%'
	document.getElementById('idAutors').style.height=windowHeight+'%'
	document.getElementById('idAutors').style.left= 50+windowWidth/-2 +'%'
	document.getElementById('idAutors').style.top= 50+windowHeight/-2+'%'; 
	windowWidth=windowWidth+1
	windowHeight=windowHeight+1

	if (windowHeight < 50)		
	{
	setTimeout('TB_animateWindow(' + windowWidth + ', ' + windowHeight + ')',5);
	
	}
 }


