if (LayerBeing[SoatNumber]){
if (isIE5 || isIE6 || isNS6){
nowLocation = document.getElementById
("Hopup_Message" + SoatNumber );
nowX = parseInt(nowLocation.style.left,10);
nowY = parseInt(nowLocation.style.top, 10);
} else if (isNS4){
nowX = document.layers["Hopup_Message"+ SoatNumber ].left;
nowY = document.layers["Hopup_Message"+ SoatNumber ].top;
}
}
|