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

  1. function CSSetStyleVis(s,v) { if (IsIE()) CSIEStyl(s).visibility = (v == 0) ? "hidden" : "visible";
  2.     else CSNSStyl(s).visibility = (v == 0) ? 'hide' : 'show'; }
  3. function CSGetStyleVis(s) { if (IsIE()) return (CSIEStyl(s).visibility == "hidden") ? 0 : 1;
  4.     else return (CSNSStyl(s).visibility == 'hide') ? 0 : 1;}