Tem um codigo em javascript que detecta tanto a qual o browse que o usuário ta usando como a resolução. Se liga:
<script LANGUAGE="JavaScript">
<!--
var type;
name = navigator.appName;
ver = parseInt(navigator.appVersion);
if (name == "Netscape" && ver >= 3) { type = 1; }
else if (name == "Microsoft Internet Explorer" && ver >= 4) { type = 2; }
else { type = 0 }
//Para Netscape//
if ( type == 1 ) {
var tools=java.awt.Toolkit.getDefaultToolkit();
var size=tools.getScreenSize();
w=size.width;
if ( w <= 640 ) {
location.href = "ne800.html";
}
else if ( w >= 641 && w <= 800 ) {
location.href = "ne800.html";
}
else if ( w > 800 ) {
location.href = "ne1024.html";
}
}
//Para MS IE 4//
else if ( type == 2 ) {
if (screen.height=="480") {
location.href="ie800.html";
}
if (screen.height=="600") {
location.href="ie800.html";
}
if (screen.height>="768") {
location.href="ie1024.html";
}
}
//Outros browsers//
else if ( type == 0 ) {
location.href = "ie800.html";
}
// -->
</SCRIPT>
você coloca esse codigo na sua pagina proncipal (index), aí ele vai redirecionar para a pagina certa. Ah, não esquece de criar as paginas (ne800.html, ie1024....), pois serão pra essas paginas que o script eirá redirecionar depois da detectação. E edita cada pagina de acordo... PS: Isso é javascript e não flash