Ya logre hacerlo con este de este modo...
Código Javascript
:
Ver original<script>
var width = screen.width;
if(screen.width == 1024 )
{
document.write("<img src='img/topbar-" + width + ".jpg' />")
}
if(screen.width == 1280 )
{
document.write("<img src='img/topbar-" + width + ".jpg' />")
}
if(screen.width > 1280 )
{
document.write("<img src='img/topbar-otros.jpg' />")
}
</script>
Otra cosa...
Alguien sabe como ajustar un iframe al alto de la resolucion de la pantalla??