<!--
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" ;
}
eval( conj + '["todo"]' + estilo + '.left = '+winl+';' );
eval( conj + '["todo"]' + estilo + '.top = '+wint+'-40;' );
}

-->