Te pongo una solución que halle, para el mismo problema, asi puedes usarla para más resoluciones.
Código:
function resolucion() {
if ((screen.height !== 768) && (screen.width !== 1024))
{
if ((screen.height >= 1024) && (screen.width >= 1280))
{document.body.style.backgroundImage = 'url(imagenes/fondo6.jpg)';}
}
}
<body onload="resolucion();">