home *** CD-ROM | disk | FTP | other *** search
/ Macmillan Math: Grade 1 …Pupil's Edition (Florida) / Math Grade 1 - Pupil's Edition (Florida).iso / pc / corsair / generic / javascript / teacher.js < prev    next >
Encoding:
Text File  |  2003-10-21  |  440 b   |  9 lines

  1. function writeLink(id) 
  2.  
  3. {
  4.  
  5.     var html = "<a class=\"NavLink\" href=\"javascript:openAssetWindow('/Asset?ID=" + 
  6.  
  7.               id + "','resizable',500,400)\" onmouseout=\"hidetip()\" " +
  8.  
  9.               "onmouseover=\"showtip(this, event,'Teacher Edition')\"><img src ='/sailfish/images/assets/Teacher_Resources.gif' border='0' width='162' height='42'></a>";
  10.  
  11.     window.document.writeln( html );
  12.  
  13.     window.document.close();
  14.  
  15. }
  16.