dear friends ,
i am designig a page using the "WMODE=TRANSPARENT" property of flash movie ,
which is embedded in a layer, on resolution 1024 X 768. I am using a JAVA
Script " RESIZE.JS " for resolution independent web page. the movie is shown at
the right position on resolution 1024 X 768, but it shifts from its original
location . i am attaching the code of " RESIZE.JS". please hv a look on it and
help me . its urgent.
i am calling this script as <BODY ONLOAD="check_width()">




window.onload = check_width
function check_width() {
var correctwidth=1024;
// You can personalize "correctwidth" according to your layout.

if (screen.width!=correctwidth) {
document.body.style.zoom = screen.width / correctwidth;
}
}