ho provsato così ma nopn funziona
Codice PHP:
function resizeobject() {
    var 
allParas document.getElementsByTagName("object");
    
width allParas[0].getAttribute("width");
    
height allParas[0].getAttribute("height");
    
nwidth 600;
    
nheight roundTo((600/width)*height,0);
    
//alert("There are " + nwidth + " X "+nheight);
    
allParas[0].setAttribute("height",nheight);
    
allParas[0].setAttribute("width",nwidth);