home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2000 April / maximum-cd-2000-04.iso / Utilities / InternetTools / dreamweaver3 / data1.cab / App_Files / Configuration / Objects / Forms / Image Field.js < prev    next >
Encoding:
JavaScript  |  1999-12-09  |  447 b   |  13 lines

  1. // Copyright 1999 Macromedia, Inc. All rights reserved.
  2.  
  3. //---------------     API FUNCTIONS    ---------------
  4.  
  5. function objectTag() {
  6.   var bDialogState = dw.getShowDialogsOnInsert(); // Was dialog shown?
  7.   var newURL = dw.doURLEncoding(browseForFileURL("select", "", true));
  8.  
  9.   if ((newURL == '')  && bDialogState) {  return ''; }
  10.  
  11.   return returnFormTag('<INPUT TYPE="image" border="0" name="imageField" SRC="' + newURL + '">');
  12. }
  13.