home *** CD-ROM | disk | FTP | other *** search
/ Freelog 100 / FreelogNo100-NovembreDecembre2010.iso / Graphisme / GoogleSketchUp / GoogleSketchUpWFR.exe / GoogleSketchUp8.msi / SketchUpMeta.cab / file_su_fr_14 < prev    next >
Encoding:
Text File  |  2009-08-31  |  503 b   |  17 lines

  1. function modifyAnchor(anchorID, url)
  2. {
  3.   var anchorelement = document.getElementById(anchorID);
  4.   anchorelement.href= 'http://sketchup.google.com/support/bin/answer.py?hl=fr&answer=' + url;
  5.   anchorelement.target = "_blank";
  6. }
  7.  
  8. function replaceText(elementID, platform, childIndex, text)
  9. {
  10.   var lineItem = document.getElementById(elementID);
  11.   var os = navigator.appVersion.indexOf(platform) != -1? 1 : 0;
  12.   var child = lineItem.children(childIndex);
  13.   if (os == 1) {
  14.     child.innerText = text;
  15.   }
  16. }
  17.