// JavaScript Documentfunction resizeWin(w, h){	window.moveTo((screen.width - w) / 2, (screen.height - h) / 2);	window.resizeTo(w, h);}resizeWin(1024,768);
