home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2008 April / PCgo 2008-04 (DVD).iso / interface / contents / windowspluspack2008_3923 / 13879 / files / mediacoder-0.6.1.4048.exe / htdocs / start.7z / main.js < prev    next >
Encoding:
Text File  |  2007-03-23  |  372 b   |  14 lines

  1. function Wiki(title)
  2. {
  3.     window.location = "http://mediacoder.sourceforge.net/wiki/index.php?title=" + title;
  4. }
  5.  
  6. function GetUrlArg(name)
  7. {
  8.     var idx=document.location.href.indexOf(name+'=');
  9.     if (idx<=0) return null;
  10.     var argstr=document.location.href.substring(idx+name.length+1);
  11.     idx = argstr.indexOf('&');
  12.     return idx>=0?argstr.substring(0, idx):argstr;
  13. }
  14.