home *** CD-ROM | disk | FTP | other *** search
/ com!online 2002 June / comonline0602.iso / software / golive5 / GoLive5_Tryout.exe / MM7.Cab / F1707_StylePos.scpt.A1180258_69AD_4130_944D_0B6274131723 < prev    next >
Encoding:
Text File  |  2000-08-17  |  383 b   |  4 lines

  1. function CSSetStylePos(s,d,p) { if (IsIE()) { if (d == 0) CSIEStyl(s).posLeft = p; else CSIEStyl(s).posTop = p; }
  2.     else { if (d == 0) CSNSStyl(s).left = p; else CSNSStyl(s).top = p; } }
  3. function CSGetStylePos(s,d) { if (IsIE()) { if (d == 0) return CSIEStyl(s).posLeft; else return CSIEStyl(s).posTop; }
  4.     else { if (d == 0) return CSNSStyl(s).left; else return CSNSStyl(s).top; }}