<!--
function situa(w,h){


	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	
	if( document.layers ){
    conj = "document.layers" ;
    estilo="" ;
}else{
    conj = "document.all" ;
    estilo=".style" ;
}
if(wint==60){
eval( conj + '["todo"]' + estilo + '.left = '+winl+'+50;' );
}else{
eval( conj + '["todo"]' + estilo + '.left = '+winl+'+50;' );
eval( conj + '["todo"]' + estilo + '.top = '+wint+'-80;' );}
}

-->
