<!-- 
kx = 0; ky = 0;
sx = 800; sy = 400; 
if (screen.width>800) kx = ((screen.width/2)-400); 
if (screen.height>600) ky = ((screen.height/2-sy/2)/4); 
if (screen.width<=800) kx = 0; 
if (screen.height<=600) sy = 0; 

window.moveTo(kx,ky); 
if (screen.height>600) window.resizeTo(800,800); ; 
if (screen.height<600) window.resizeTo(800,(screen.height-(sy/4))); 

if (screen.colordepth<32) 
alert("Am besten setzen Sie die Farbtiefe auf True Color (32-Bit) !\n\n     Better you change color depth to True Color (32-Bit) !"); 
// -->