//Bildschirmgröße

function obenlinks() {
   with(document.getElementById("arbeitsflaeche").style) {
      top="0px";
      left="0px";
      marginTop="0px";
      marginLeft="0px";
   }
}
function zentriert() {
   with(document.getElementById("arbeitsflaeche").style) {
      top="50%";
      left="50%";
      marginTop="-300px";
      marginLeft="-477x";
   }
}
function AutoMove() {
  if(screen.width<1024)
     obenlinks();
  else
     zentriert();
}


