el código js es incorrecto, debe ser:
Código Javascript
:
Ver original<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento</title>
<script type="text/javascript" language="javascript">
//es mejor una función que se llama al cargar la pagina, con del DOM ya cargado
function ajustar(){
var ancho = (screen.width); //punto y comas al final de cada línea
var alto = (screen.height);
if(ancho == 1024 & alto == 768){
//body("contenido")NO existe, seria: document.getElementById("contenido")
document.body.style.marginLeft=200+"px";
}else{
document.body.style.marginLeft=300+"px";
}
}
</script>
</head>
<body id="contenido" onload="ajustar();">
</body></html>