codice:
function resizeWindow(){
if(document.getElementById('foto') != null){
w=document.getElementById('foto').width+50;
h=document.getElementById('foto').height+81;
winWidth=(w<320)?320 : ((w<640)?w:640);
if(w >=640){document.getElementById('foto').width=580}
winHeight=(h<240)?240 : ((h<480)?h:480);
winLeft=(screen.width-winWidth)/2;
winTop=(screen.height-winHeight)/2;
window.moveTo(winLeft,winTop);
window.resizeTo(winWidth,winHeight);
}
}
per aggiustare i margini basta regolare la 3a e la 4a riga
edit: ma possibile che sto forum parsi gli smile anche dentro ai tag code?!?