diff --git a/ImageMagick.spec b/ImageMagick.spec
index ebaacd0..b92e2f5 100644
--- a/ImageMagick.spec
+++ b/ImageMagick.spec
@@ -1,5 +1,5 @@
 %define VERSION  6.6.1
-%define Patchlevel  4
+%define Patchlevel  5
 
 Name:           ImageMagick
 Version:        %{VERSION}
diff --git a/Magick++/lib/CoderInfo.cpp b/Magick++/lib/CoderInfo.cpp
index 4083e82..9d08556 100644
--- a/Magick++/lib/CoderInfo.cpp
+++ b/Magick++/lib/CoderInfo.cpp
@@ -6,7 +6,7 @@
 //
 
 #define MAGICKCORE_IMPLEMENTATION  1
-#define MAGICK_PLUSPLUS_IMPLEMENTATION 1
+#define MAGICK_PLUSPLUS_IMPLEMENTATION  1
 
 #include "Magick++/Include.h"
 #include "Magick++/CoderInfo.h"
@@ -14,6 +14,26 @@
 
 using namespace std;
 
+// Default constructor
+Magick::CoderInfo::CoderInfo ( void )
+  : _name(),
+    _description(),
+    _isReadable(false),
+    _isWritable(false),
+    _isMultiFrame(false)
+{
+}
+
+// Copy constructor
+Magick::CoderInfo::CoderInfo ( const Magick::CoderInfo &coder_ )
+{
+  _name         = coder_._name;
+  _description  = coder_._description;
+  _isReadable   = coder_._isReadable;
+  _isWritable   = coder_._isWritable;
+  _isMultiFrame = coder_._isMultiFrame;
+}
+
 Magick::CoderInfo::CoderInfo ( const std::string &name_ )
   : _name(),
     _description(),
@@ -75,6 +95,21 @@
   return _isMultiFrame;
 }
 
+// Assignment operator
+Magick::CoderInfo& Magick::CoderInfo::operator= (const CoderInfo &coder_ )
+{
+  // If not being set to ourself
+  if (this != &coder_)
+    {
+      _name         = coder_._name;
+      _description  = coder_._description;
+      _isReadable   = coder_._isReadable;
+      _isWritable   = coder_._isWritable;
+      _isMultiFrame = coder_._isMultiFrame;
+    }
+  return *this;
+}
+
 // Construct from MagickCore::MagickInfo*
 Magick::CoderInfo::CoderInfo ( const MagickCore::MagickInfo *magickInfo_ )
   : _name(string(magickInfo_->name ? magickInfo_->name : "")),
@@ -85,4 +120,3 @@
 {
   // Nothing more to do
 }
-
diff --git a/Magick++/lib/Magick++/CoderInfo.h b/Magick++/lib/Magick++/CoderInfo.h
index fe67249..ce6cfe4 100644
--- a/Magick++/lib/Magick++/CoderInfo.h
+++ b/Magick++/lib/Magick++/CoderInfo.h
@@ -1,6 +1,6 @@
 // This may look like C code, but it is really -*- C++ -*-
 //
-// Copyright Bob Friesenhahn, 2001, 2002, 2003
+// Copyright Bob Friesenhahn, 2001, 2002
 //
 // CoderInfo Definition
 //
@@ -8,7 +8,7 @@
 //
 
 #if !defined (Magick_CoderInfo_header)
-#define Magick_CoderInfo_header
+#define Magick_CoderInfo_header  1
 
 #include "Magick++/Include.h"
 #include <string>
@@ -25,7 +25,16 @@
       FalseMatch	// match coder if false
     };
 
+    // Default constructor
+    CoderInfo ( void );
+
+    // Copy constructor
+    CoderInfo ( const CoderInfo &coder_ );
+
+    // Construct with coder name
     CoderInfo ( const std::string &name_ );
+
+    // Destructor
     ~CoderInfo ( void );
 
     // Format name
@@ -43,6 +52,9 @@
     // Format supports multiple frames
     bool isMultiFrame( void ) const;
 
+    // Assignment operator
+    CoderInfo& operator= (const CoderInfo &coder_ );
+
     //
     // Implemementation methods
     //
@@ -50,15 +62,6 @@
 
   private:
 
-    // Default constructor (not supported)
-    CoderInfo ( void );
-
-    // Copy constructor (not supported)
-    //    CoderInfo ( const CoderInfo &coder_ );
-
-    // Assignment operator (not supported)
-    CoderInfo& operator= (const CoderInfo &coder_ );
-
     std::string		_name;
     std::string		_description;
     bool		_isReadable;
diff --git a/Makefile.am b/Makefile.am
index c6ca184..a16ed33 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -324,8 +324,8 @@
 	@echo $(DIST_ARCHIVE_SRPM) is ready for distribution.
 	@echo ==============================================================
 
-RPMDIR=redhat
-RPMARCH=i386
+RPMDIR=rpmbuild
+RPMARCH=$(MAGICK_TARGET_CPU)
 
 DIST_ARCHIVE_RPM= \
 	$(RPMDIR)/$(RPMARCH)/$(PACKAGE_NAME)-$(PACKAGE_VERSION)$(PACKAGE_VERSION_ADDENDUM)-$(PACKAGE_RELEASE).$(RPMARCH).rpm \
diff --git a/Makefile.in b/Makefile.in
index 9e0e0ae..b552d67 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -2357,6 +2357,9 @@
 MAGICK_LIB_VERSION_TEXT = @MAGICK_LIB_VERSION_TEXT@
 MAGICK_LTDLDEPS = @MAGICK_LTDLDEPS@
 MAGICK_PCFLAGS = @MAGICK_PCFLAGS@
+MAGICK_TARGET_CPU = @MAGICK_TARGET_CPU@
+MAGICK_TARGET_OS = @MAGICK_TARGET_OS@
+MAGICK_TARGET_VENDOR = @MAGICK_TARGET_VENDOR@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANDelegate = @MANDelegate@
@@ -4611,8 +4614,8 @@
 # RPM build support
 #
 @RPM_DELEGATE_TRUE@DIST_ARCHIVE_SRPM = $(distdir).src.rpm
-@RPM_DELEGATE_TRUE@RPMDIR = redhat
-@RPM_DELEGATE_TRUE@RPMARCH = i386
+@RPM_DELEGATE_TRUE@RPMDIR = rpmbuild
+@RPM_DELEGATE_TRUE@RPMARCH = $(MAGICK_TARGET_CPU)
 @RPM_DELEGATE_FALSE@DIST_ARCHIVE_RPM = 
 @RPM_DELEGATE_TRUE@DIST_ARCHIVE_RPM = \
 @RPM_DELEGATE_TRUE@	$(RPMDIR)/$(RPMARCH)/$(PACKAGE_NAME)-$(PACKAGE_VERSION)$(PACKAGE_VERSION_ADDENDUM)-$(PACKAGE_RELEASE).$(RPMARCH).rpm \
diff --git a/PerlMagick/Makefile.am b/PerlMagick/Makefile.am
index 20aafb3..c4dbadc 100644
--- a/PerlMagick/Makefile.am
+++ b/PerlMagick/Makefile.am
@@ -50,8 +50,7 @@
 
 install-exec-perl: $(PERLMAKEFILE)
 	( cd $(PERLMAGICK) && $(MAKE) CC='@CC@' && \
-	$(MAKE) CC='@CC@' install && \
-	$(MAKE) clean && rm -f  Makefile.old )
+	$(MAKE) CC='@CC@' install )
 
 all-perl: perl-sources
 
diff --git a/config/configure.xml b/config/configure.xml
index 80afca3..a4d9680 100644
--- a/config/configure.xml
+++ b/config/configure.xml
@@ -8,7 +8,7 @@
 <configuremap>
   <configure name="NAME" value="ImageMagick"/>
   <configure name="LIB_VERSION" value="0x661"/>
-  <configure name="LIB_VERSION_NUMBER" value="6,6,1,4"/>
+  <configure name="LIB_VERSION_NUMBER" value="6,6,1,5"/>
   <configure name="RELEASE_DATE" value="2010-04-16"/>
   <configure name="CONFIGURE" value="./configure "/>
   <configure name="PREFIX" value="/usr/local"/>
diff --git a/configure b/configure
index f3e1b91..7303eb0 100755
--- a/configure
+++ b/configure
@@ -1127,6 +1127,9 @@
 MAGICK_LIBRARY_AGE
 MAGICK_LIBRARY_REVISION
 MAGICK_LIBRARY_CURRENT
+MAGICK_TARGET_OS
+MAGICK_TARGET_VENDOR
+MAGICK_TARGET_CPU
 target_os
 target_vendor
 target_cpu
@@ -3478,6 +3481,15 @@
 
 
 
+MAGICK_TARGET_CPU=$target_cpu
+
+
+MAGICK_TARGET_VENDOR=$target_vendor
+
+
+MAGICK_TARGET_OS=$target_os
+
+
 # Substitute library versioning
 MAGICK_LIBRARY_CURRENT_MIN=`expr $MAGICK_LIBRARY_CURRENT - $MAGICK_LIBRARY_AGE`
 
@@ -9191,13 +9203,13 @@
 else
   lt_cv_nm_interface="BSD nm"
   echo "int some_variable = 0;" > conftest.$ac_ext
-  (eval echo "\"\$as_me:9194: $ac_compile\"" >&5)
+  (eval echo "\"\$as_me:9206: $ac_compile\"" >&5)
   (eval "$ac_compile" 2>conftest.err)
   cat conftest.err >&5
-  (eval echo "\"\$as_me:9197: $NM \\\"conftest.$ac_objext\\\"\"" >&5)
+  (eval echo "\"\$as_me:9209: $NM \\\"conftest.$ac_objext\\\"\"" >&5)
   (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
   cat conftest.err >&5
-  (eval echo "\"\$as_me:9200: output\"" >&5)
+  (eval echo "\"\$as_me:9212: output\"" >&5)
   cat conftest.out >&5
   if $GREP 'External.*some_variable' conftest.out > /dev/null; then
     lt_cv_nm_interface="MS dumpbin"
@@ -10388,7 +10400,7 @@
   ;;
 *-*-irix6*)
   # Find out which ABI we are using.
-  echo '#line 10391 "configure"' > conftest.$ac_ext
+  echo '#line 10403 "configure"' > conftest.$ac_ext
   if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
@@ -12473,11 +12485,11 @@
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
    -e 's:$: $lt_compiler_flag:'`
-   (eval echo "\"\$as_me:12476: $lt_compile\"" >&5)
+   (eval echo "\"\$as_me:12488: $lt_compile\"" >&5)
    (eval "$lt_compile" 2>conftest.err)
    ac_status=$?
    cat conftest.err >&5
-   echo "$as_me:12480: \$? = $ac_status" >&5
+   echo "$as_me:12492: \$? = $ac_status" >&5
    if (exit $ac_status) && test -s "$ac_outfile"; then
      # The compiler can only warn and ignore the option if not recognized
      # So say no if there are warnings other than the usual output.
@@ -12812,11 +12824,11 @@
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
    -e 's:$: $lt_compiler_flag:'`
-   (eval echo "\"\$as_me:12815: $lt_compile\"" >&5)
+   (eval echo "\"\$as_me:12827: $lt_compile\"" >&5)
    (eval "$lt_compile" 2>conftest.err)
    ac_status=$?
    cat conftest.err >&5
-   echo "$as_me:12819: \$? = $ac_status" >&5
+   echo "$as_me:12831: \$? = $ac_status" >&5
    if (exit $ac_status) && test -s "$ac_outfile"; then
      # The compiler can only warn and ignore the option if not recognized
      # So say no if there are warnings other than the usual output.
@@ -12917,11 +12929,11 @@
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
    -e 's:$: $lt_compiler_flag:'`
-   (eval echo "\"\$as_me:12920: $lt_compile\"" >&5)
+   (eval echo "\"\$as_me:12932: $lt_compile\"" >&5)
    (eval "$lt_compile" 2>out/conftest.err)
    ac_status=$?
    cat out/conftest.err >&5
-   echo "$as_me:12924: \$? = $ac_status" >&5
+   echo "$as_me:12936: \$? = $ac_status" >&5
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
    then
      # The compiler can only warn and ignore the option if not recognized
@@ -12972,11 +12984,11 @@
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
    -e 's:$: $lt_compiler_flag:'`
-   (eval echo "\"\$as_me:12975: $lt_compile\"" >&5)
+   (eval echo "\"\$as_me:12987: $lt_compile\"" >&5)
    (eval "$lt_compile" 2>out/conftest.err)
    ac_status=$?
    cat out/conftest.err >&5
-   echo "$as_me:12979: \$? = $ac_status" >&5
+   echo "$as_me:12991: \$? = $ac_status" >&5
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
    then
      # The compiler can only warn and ignore the option if not recognized
@@ -15342,7 +15354,7 @@
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 15345 "configure"
+#line 15357 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -15438,7 +15450,7 @@
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 15441 "configure"
+#line 15453 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -17394,11 +17406,11 @@
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
    -e 's:$: $lt_compiler_flag:'`
-   (eval echo "\"\$as_me:17397: $lt_compile\"" >&5)
+   (eval echo "\"\$as_me:17409: $lt_compile\"" >&5)
    (eval "$lt_compile" 2>conftest.err)
    ac_status=$?
    cat conftest.err >&5
-   echo "$as_me:17401: \$? = $ac_status" >&5
+   echo "$as_me:17413: \$? = $ac_status" >&5
    if (exit $ac_status) && test -s "$ac_outfile"; then
      # The compiler can only warn and ignore the option if not recognized
      # So say no if there are warnings other than the usual output.
@@ -17493,11 +17505,11 @@
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
    -e 's:$: $lt_compiler_flag:'`
-   (eval echo "\"\$as_me:17496: $lt_compile\"" >&5)
+   (eval echo "\"\$as_me:17508: $lt_compile\"" >&5)
    (eval "$lt_compile" 2>out/conftest.err)
    ac_status=$?
    cat out/conftest.err >&5
-   echo "$as_me:17500: \$? = $ac_status" >&5
+   echo "$as_me:17512: \$? = $ac_status" >&5
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
    then
      # The compiler can only warn and ignore the option if not recognized
@@ -17545,11 +17557,11 @@
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
    -e 's:$: $lt_compiler_flag:'`
-   (eval echo "\"\$as_me:17548: $lt_compile\"" >&5)
+   (eval echo "\"\$as_me:17560: $lt_compile\"" >&5)
    (eval "$lt_compile" 2>out/conftest.err)
    ac_status=$?
    cat out/conftest.err >&5
-   echo "$as_me:17552: \$? = $ac_status" >&5
+   echo "$as_me:17564: \$? = $ac_status" >&5
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
    then
      # The compiler can only warn and ignore the option if not recognized
@@ -18957,7 +18969,7 @@
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 18960 "configure"
+#line 18972 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
diff --git a/configure.ac b/configure.ac
index a958edf..c8774d8 100755
--- a/configure.ac
+++ b/configure.ac
@@ -88,6 +88,15 @@
 AC_CANONICAL_HOST
 AC_CANONICAL_TARGET([])
 
+MAGICK_TARGET_CPU=$target_cpu
+AC_SUBST(MAGICK_TARGET_CPU)
+
+MAGICK_TARGET_VENDOR=$target_vendor
+AC_SUBST(MAGICK_TARGET_VENDOR)
+
+MAGICK_TARGET_OS=$target_os
+AC_SUBST(MAGICK_TARGET_OS)
+
 # Substitute library versioning
 AC_SUBST(MAGICK_LIBRARY_CURRENT)dnl
 AC_SUBST(MAGICK_LIBRARY_REVISION)dnl
diff --git a/libtool b/libtool
index 9fd06a4..76e04a9 100755
--- a/libtool
+++ b/libtool
@@ -1,7 +1,7 @@
 #! /bin/sh
 
 # libtool - Provide generalized library-building support services.
-# Generated automatically by config.status (ImageMagick) 6.6.1-4
+# Generated automatically by config.status (ImageMagick) 6.6.1-5
 # Libtool was configured on host magick.imagemagick.org:
 # NOTE: Changes made to this file will be lost: look at ltmain.sh.
 #
diff --git a/magick/version.h b/magick/version.h
index 40c8eba..2f24eef 100644
--- a/magick/version.h
+++ b/magick/version.h
@@ -30,7 +30,7 @@
 #define MagickLibVersion  0x661
 #define MagickLibVersionText  "6.6.1"
 #define MagickLibVersionNumber  3,0,0
-#define MagickLibAddendum  "-4"
+#define MagickLibAddendum  "-5"
 #define MagickLibInterface  3
 #define MagickLibMinInterface  3
 #define MagickReleaseDate  "2010-04-16"
diff --git a/version.sh b/version.sh
index 3c14ebb..a38aa0d 100644
--- a/version.sh
+++ b/version.sh
@@ -12,7 +12,7 @@
 # PACKAGE_NAME (e.g. "1.0.0").
 PACKAGE_VERSION='6.6.1'
 PACKAGE_LIB_VERSION="0x661"
-PACKAGE_RELEASE="4"
+PACKAGE_RELEASE="5"
 PACKAGE_LIB_VERSION_NUMBER="6,6,1,${PACKAGE_RELEASE}"
 PACKAGE_RELEASE_DATE=`date +%F`
 PACKAGE_STRING="$PACKAGE_NAME $PACKAGE_VERSION"
diff --git a/www/ImageMagickObject.html b/www/ImageMagickObject.html
index b8b5b7e..bd809ee 100644
--- a/www/ImageMagickObject.html
+++ b/www/ImageMagickObject.html
@@ -207,7 +207,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/advanced-unix-installation.html b/www/advanced-unix-installation.html
index 2d2710f..58475d9 100644
--- a/www/advanced-unix-installation.html
+++ b/www/advanced-unix-installation.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/advanced-windows-installation.html b/www/advanced-windows-installation.html
index 44bb5bd..d462cc0 100644
--- a/www/advanced-windows-installation.html
+++ b/www/advanced-windows-installation.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/api.html b/www/api.html
index f1909b7..5870653 100644
--- a/www/api.html
+++ b/www/api.html
@@ -124,9 +124,6 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
-</div>
-<div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
 </div>
 <div  class="sponsor">
@@ -160,7 +157,7 @@
   <h2><a name="ada"></a>Ada</h2>
 </div>
 
-<p><a href="https://gna.org/projects/g2f/" target="1988484913">G2F</a> implements an Ada 95 binding to a subset of the low-level MagickCore library.</p>
+<p><a href="https://gna.org/projects/g2f/" target="2085137208">G2F</a> implements an Ada 95 binding to a subset of the low-level MagickCore library.</p>
 
 <div style="margin: auto;">
   <h2><a name="c"></a>C</h2>
@@ -172,7 +169,7 @@
   <h2><a name="ch"></a>Ch</h2>
 </div>
 
-<p><a href="http://www.imagemagick.org/ChMagick" target="1470140667">ChMagick</a> is a <a href="http://www.softintegration.com/" target="460846860">Ch</a> binding to the MagickCore and MagickWand API.  Ch is an embeddable C/C++ interpreter for cross-platform scripting.</p>
+<p><a href="http://www.imagemagick.org/ChMagick" target="533580091">ChMagick</a> is a <a href="http://www.softintegration.com/" target="359610600">Ch</a> binding to the MagickCore and MagickWand API.  Ch is an embeddable C/C++ interpreter for cross-platform scripting.</p>
 
 <div style="margin: auto;">
   <h2><a name="com+"></a>COM+</h2>
@@ -184,31 +181,31 @@
   <h2><a name="c++"></a>C++</h2>
 </div>
 
-<p><a href="http://www.imagemagick.org/Magick++" target="1165091656">Magick++</a> provides an object-oriented C++ interface to ImageMagick.  See <a href="http://www.imagemagick.org/Magick++/tutorial/Magick++_tutorial.pdf" target="402840044">A Gentle Introduction to Magick++</a> for an introductory tutorial to Magick++.  We include the <a href="http://www.imagemagick.org/Magick++/tutorial/Magick++_tutorial.odt" target="376908555">source</a> if you want to correct, enhance, or expand the tutorial.</p>
+<p><a href="http://www.imagemagick.org/Magick++" target="1321967373">Magick++</a> provides an object-oriented C++ interface to ImageMagick.  See <a href="http://www.imagemagick.org/Magick++/tutorial/Magick++_tutorial.pdf" target="79438010">A Gentle Introduction to Magick++</a> for an introductory tutorial to Magick++.  We include the <a href="http://www.imagemagick.org/Magick++/tutorial/Magick++_tutorial.odt" target="106008438">source</a> if you want to correct, enhance, or expand the tutorial.</p>
 
 <div style="margin: auto;">
   <h2><a name="java"></a>Java</h2>
 </div>
 
-<p><a href="http://www.jmagick.org" target="2107703554">JMagick</a> provides an object-oriented Java interface to ImageMagick.  <a href="http://im4java.sourceforge.net" target="2143494899">Im4java</a> is a pure-java interface to the ImageMagick command-line.</p>
+<p><a href="http://www.jmagick.org" target="160939395">JMagick</a> provides an object-oriented Java interface to ImageMagick.  <a href="http://im4java.sourceforge.net" target="1202608683">Im4java</a> is a pure-java interface to the ImageMagick command-line.</p>
 
 <div style="margin: auto;">
   <h2><a name="labview"></a>LabVIEW</h2>
 </div>
 
-<p><a href="http://forums.lavag.org/downloads-file90.html" target="1329787286">LVOOP ImageMagick</a> is an object-oriented LabVIEW interface to ImageMagick.</p>
+<p><a href="http://forums.lavag.org/downloads-file90.html" target="1722036035">LVOOP ImageMagick</a> is an object-oriented LabVIEW interface to ImageMagick.</p>
 
 <div style="margin: auto;">
   <h2><a name="lisp"></a>Lisp</h2>
 </div>
 
-<p><a href="http://common-lisp.net/project/cl-magick/" target="497962563">CL-Magick</a> provides a Common Lisp interface to the ImageMagick library.</p>
+<p><a href="http://common-lisp.net/project/cl-magick/" target="2052642177">CL-Magick</a> provides a Common Lisp interface to the ImageMagick library.</p>
 
 <div style="margin: auto;">
   <h2><a name="neko"></a>Neko</h2>
 </div>
 
-<p><a href="http://code.google.com/p/nmagick" target="1402671888">NMagick</a> is a port of the ImageMagick library to the haXe and Neko platforms. It provides image manipulation capabilities to both web and desktop applications using Neko.</p>
+<p><a href="http://code.google.com/p/nmagick" target="1460805230">NMagick</a> is a port of the ImageMagick library to the haXe and Neko platforms. It provides image manipulation capabilities to both web and desktop applications using Neko.</p>
 
 <div style="margin: auto;">
   <h2><a name="dot-net"></a>.NET</h2>
@@ -222,7 +219,7 @@
   <h2><a name="pascal"></a>Pascal</h2>
 </div>
 
-<p><a href="http://wiki.lazarus.freepascal.org/PascalMagick" target="1215490969">PascalMagick</a> a Pascal binding for the MagickWand API and also the low-level MagickCore library. It works with Free Pascal / Lazarus and Delphi.</p>
+<p><a href="http://wiki.lazarus.freepascal.org/PascalMagick" target="1337265478">PascalMagick</a> a Pascal binding for the MagickWand API and also the low-level MagickCore library. It works with Free Pascal / Lazarus and Delphi.</p>
 
 <div style="margin: auto;">
   <h2><a name="perl"></a>Perl</h2>
@@ -234,50 +231,50 @@
   <h2><a name="php"></a>PHP</h2>
 </div>
 
-<p><a href="http://www.magickwand.org/" target="1100220573">MagickWand for PHP</a> a native PHP-extension to the ImageMagick MagickWand API.</p>
+<p><a href="http://www.magickwand.org/" target="691641305">MagickWand for PHP</a> a native PHP-extension to the ImageMagick MagickWand API.</p>
 
-<p><a href="http://pecl.html.net/package/imagick" target="1575989600">IMagick</a> is a native PHP extension to create and modify images using the ImageMagick API.  Documentation for the extension is available <a href="http://php.net/imagick" target="387829461">here</a>.</p>
+<p><a href="http://pecl.html.net/package/imagick" target="2061738101">IMagick</a> is a native PHP extension to create and modify images using the ImageMagick API.  Documentation for the extension is available <a href="http://php.net/imagick" target="620638938">here</a>.</p>
 
-<p><a href="http://www.francodacosta.com/phmagick" target="222087248">phMagick</a> is a wrapper class for ImageMagick, wrapping the most common web image manipulation actions in easy to use functions, but allowing full access to ImageMagick's power by issuing system calls to it's command-line programs.</p>
+<p><a href="http://www.francodacosta.com/phmagick" target="82918709">phMagick</a> is a wrapper class for ImageMagick, wrapping the most common web image manipulation actions in easy to use functions, but allowing full access to ImageMagick's power by issuing system calls to it's command-line programs.</p>
 
 <div style="margin: auto;">
 
   <h2><a name="python"></a>Python</h2>
 </div>
 
-<p><a href="http://www.assembla.com/wiki/show/pythonmagickwand" target="987580026">PythonMagickWand</a> is an object-oriented Python interface to MagickWand based on ctypes.</p>
+<p><a href="http://www.assembla.com/wiki/show/pythonmagickwand" target="2071590671">PythonMagickWand</a> is an object-oriented Python interface to MagickWand based on ctypes.</p>
 
-<p><a href="http://www.imagemagick.org/download/python/" target="1584552439">PythonMagick</a> is an object-oriented Python interface to ImageMagick.</p>
+<p><a href="http://www.imagemagick.org/download/python/" target="812710268">PythonMagick</a> is an object-oriented Python interface to ImageMagick.</p>
 
 <div style="margin: auto;">
   <h2><a name="realbasic"></a>REALbasic</h2>
 </div>
 
-<p>The <a href="http://www.monkeybreadsoftware.de/realbasic/plugin-imagemagick.shtml" target="1267978474">MBS Realbasic ImageMagick</a> is a plugin that utilizes the power of ImageMagick from within the RealBasic environment.</p>
+<p>The <a href="http://www.monkeybreadsoftware.de/realbasic/plugin-imagemagick.shtml" target="838586302">MBS Realbasic ImageMagick</a> is a plugin that utilizes the power of ImageMagick from within the RealBasic environment.</p>
 
 <div style="margin: auto;">
   <h2><a name="ruby"></a>Ruby</h2>
 </div>
 
-<p><a href="http://rmagick.rubyforge.org/" target="111473579">RMagick</a> is an interface between the Ruby programming language and the <a href="../www/magick-core.html">MagickCore</a> image processing libraries.  Get started with RMagick by perusing the <a href="http://www.imagemagick.org/RMagick/doc/" target="999861123">documentation</a>.</p>
+<p><a href="http://rmagick.rubyforge.org/" target="394444917">RMagick</a> is an interface between the Ruby programming language and the <a href="../www/magick-core.html">MagickCore</a> image processing libraries.  Get started with RMagick by perusing the <a href="http://www.imagemagick.org/RMagick/doc/" target="1525652427">documentation</a>.</p>
 
-<p><a href="http://magickwand.rubyforge.org/" target="395831080">MagickWand for Ruby</a> is an interface between the Ruby programming language and the <a href="../www/magick-wand.html">MagickWand</a> image processing libraries.  Get started with MagickWand for PHP by perusing the <a href="http://magickwand.rubyforge.org/" target="259353376">documentation</a>.</p>
+<p><a href="http://magickwand.rubyforge.org/" target="1489710189">MagickWand for Ruby</a> is an interface between the Ruby programming language and the <a href="../www/magick-wand.html">MagickWand</a> image processing libraries.  Get started with MagickWand for PHP by perusing the <a href="http://magickwand.rubyforge.org/" target="1859459403">documentation</a>.</p>
 
-<p><a href="http://rubyforge.org/projects/mini-magick" target="1944739429">MiniMagick</a> is a Ruby wrapper for ImageMagick command line. MiniMagick gives you convenient access to all the command line options ImageMagick supports.</p>
+<p><a href="http://rubyforge.org/projects/mini-magick" target="1902448819">MiniMagick</a> is a Ruby wrapper for ImageMagick command line. MiniMagick gives you convenient access to all the command line options ImageMagick supports.</p>
 
-<p><a href="http://quickmagick.rubyforge.org/quick_magick" target="1864194008">QuickMagick</a> is a gem for easily accessing ImageMagick command line tools from Ruby programs.</p>
+<p><a href="http://quickmagick.rubyforge.org/quick_magick" target="591812769">QuickMagick</a> is a gem for easily accessing ImageMagick command line tools from Ruby programs.</p>
 
 <div style="margin: auto;">
   <h2><a name="tcl"></a>Tcl/Tk</h2>
 </div>
 
-<p><a href="http://tclmagick.sourceforge.net/" target="768426261">TclMagick</a> a native Tcl-extension to the ImageMagick MagickWand API.</p>
+<p><a href="http://tclmagick.sourceforge.net/" target="1449171498">TclMagick</a> a native Tcl-extension to the ImageMagick MagickWand API.</p>
 
 <div style="margin: auto;">
   <h2><a name="xml-rpc"></a>XML RPC</h2>
 </div>
 
-<p><a href="http://code.google.com/p/remotemagick/" target="1386635624">RemoteMagick</a> is an XML-RPC web service that creates image thumbnails.</p>
+<p><a href="http://code.google.com/p/remotemagick/" target="1805103067">RemoteMagick</a> is an XML-RPC web service that creates image thumbnails.</p>
 

 </div>

 

@@ -285,7 +282,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/api/animate.html b/www/api/animate.html
index 21c4102..6a64130 100644
--- a/www/api/animate.html
+++ b/www/api/animate.html
@@ -124,6 +124,9 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+</div>
+<div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
 </div>
 <div  class="sponsor">
@@ -180,7 +183,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/api/annotate.html b/www/api/annotate.html
index 39f73a5..7ae27a7 100644
--- a/www/api/annotate.html
+++ b/www/api/annotate.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/api/attribute.html b/www/api/attribute.html
index 7b9ba4b..11229d1 100644
--- a/www/api/attribute.html
+++ b/www/api/attribute.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/api/blob.html b/www/api/blob.html
index b1f627d..39af224 100644
--- a/www/api/blob.html
+++ b/www/api/blob.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -343,7 +343,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/api/cache-view.html b/www/api/cache-view.html
index be87050..de80ba1 100644
--- a/www/api/cache-view.html
+++ b/www/api/cache-view.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/api/cache.html b/www/api/cache.html
index e023dd5..6920f22 100644
--- a/www/api/cache.html
+++ b/www/api/cache.html
@@ -512,7 +512,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/api/color.html b/www/api/color.html
index 1232415..ed5b286 100644
--- a/www/api/color.html
+++ b/www/api/color.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/api/colormap.html b/www/api/colormap.html
index ae04646..cdbd9a1 100644
--- a/www/api/colormap.html
+++ b/www/api/colormap.html
@@ -182,7 +182,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/api/compare.html b/www/api/compare.html
index d753354..f6c80b4 100644
--- a/www/api/compare.html
+++ b/www/api/compare.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -325,7 +325,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/api/composite.html b/www/api/composite.html
index 057d694..56bd78b 100644
--- a/www/api/composite.html
+++ b/www/api/composite.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/api/deprecate.html b/www/api/deprecate.html
index e80652c..486ca5d 100644
--- a/www/api/deprecate.html
+++ b/www/api/deprecate.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
+   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/api/distort.html b/www/api/distort.html
index 55e9686..e2a61cb 100644
--- a/www/api/distort.html
+++ b/www/api/distort.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -257,7 +257,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/api/draw.html b/www/api/draw.html
index 5d5d3fa..b6e59c4 100644
--- a/www/api/draw.html
+++ b/www/api/draw.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/api/drawing-wand.html b/www/api/drawing-wand.html
index 15f2f10..c4ee31f 100644
--- a/www/api/drawing-wand.html
+++ b/www/api/drawing-wand.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
+   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/api/effect.html b/www/api/effect.html
index 565b96f..4262828 100644
--- a/www/api/effect.html
+++ b/www/api/effect.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
+   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -752,7 +752,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/api/enhance.html b/www/api/enhance.html
index 8ee4e31..c31a22a 100644
--- a/www/api/enhance.html
+++ b/www/api/enhance.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/api/exception.html b/www/api/exception.html
index d0072ad..84d8842 100644
--- a/www/api/exception.html
+++ b/www/api/exception.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -465,7 +465,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/api/feature.html b/www/api/feature.html
index ea22360..5d87630 100644
--- a/www/api/feature.html
+++ b/www/api/feature.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/api/histogram.html b/www/api/histogram.html
index 3db8502..aa96905 100644
--- a/www/api/histogram.html
+++ b/www/api/histogram.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/api/image.html b/www/api/image.html
index effa9eb..8a9fc2c 100644
--- a/www/api/image.html
+++ b/www/api/image.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -1050,7 +1050,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/api/layer.html b/www/api/layer.html
index 45ed649..faff630 100644
--- a/www/api/layer.html
+++ b/www/api/layer.html
@@ -124,9 +124,6 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
-</div>
-<div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
 </div>
 <div  class="sponsor">
diff --git a/www/api/magick-deprecate.html b/www/api/magick-deprecate.html
index bbcc50d..7982dc6 100644
--- a/www/api/magick-deprecate.html
+++ b/www/api/magick-deprecate.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/api/magick-image.html b/www/api/magick-image.html
index bebc2a5..b3914e5 100644
--- a/www/api/magick-image.html
+++ b/www/api/magick-image.html
@@ -124,9 +124,6 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
-</div>
-<div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
 </div>
 <div  class="sponsor">
diff --git a/www/api/magick-property.html b/www/api/magick-property.html
index 1e38057..a4e7027 100644
--- a/www/api/magick-property.html
+++ b/www/api/magick-property.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/api/magick-wand.html b/www/api/magick-wand.html
index 915f2e7..6a7ced9 100644
--- a/www/api/magick-wand.html
+++ b/www/api/magick-wand.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/api/magick.html b/www/api/magick.html
index 866d9ff..fe43081 100644
--- a/www/api/magick.html
+++ b/www/api/magick.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -240,7 +240,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/api/memory.html b/www/api/memory.html
index 13f4941..86279d5 100644
--- a/www/api/memory.html
+++ b/www/api/memory.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
+   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/api/monitor.html b/www/api/monitor.html
index ae6855b..994924e 100644
--- a/www/api/monitor.html
+++ b/www/api/monitor.html
@@ -227,7 +227,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/api/montage.html b/www/api/montage.html
index de4918a..1101c7e 100644
--- a/www/api/montage.html
+++ b/www/api/montage.html
@@ -253,7 +253,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/api/morphology.html b/www/api/morphology.html
index 2529b3f..b9f58c6 100644
--- a/www/api/morphology.html
+++ b/www/api/morphology.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -415,7 +415,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/api/paint.html b/www/api/paint.html
index 7cded3e..c2e6271 100644
--- a/www/api/paint.html
+++ b/www/api/paint.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/api/pixel-iterator.html b/www/api/pixel-iterator.html
index 8e3c3b2..239b69e 100644
--- a/www/api/pixel-iterator.html
+++ b/www/api/pixel-iterator.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
+   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/api/pixel-view.html b/www/api/pixel-view.html
index af51963..0a1b29d 100644
--- a/www/api/pixel-view.html
+++ b/www/api/pixel-view.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/api/pixel-wand.html b/www/api/pixel-wand.html
index 4d39e28..e246cca 100644
--- a/www/api/pixel-wand.html
+++ b/www/api/pixel-wand.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
+   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -1397,7 +1397,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/api/profile.html b/www/api/profile.html
index 9b467d5..fda987a 100644
--- a/www/api/profile.html
+++ b/www/api/profile.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/api/property.html b/www/api/property.html
index ca77a96..9a38e20 100644
--- a/www/api/property.html
+++ b/www/api/property.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
+   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -397,7 +397,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/api/registry.html b/www/api/registry.html
index b5e6b34..c84caf7 100644
--- a/www/api/registry.html
+++ b/www/api/registry.html
@@ -314,7 +314,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/api/resize.html b/www/api/resize.html
index 4eb361a..e42b1aa 100644
--- a/www/api/resize.html
+++ b/www/api/resize.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
+   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/api/resource.html b/www/api/resource.html
index d624706..b577210 100644
--- a/www/api/resource.html
+++ b/www/api/resource.html
@@ -124,9 +124,6 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
-</div>
-<div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
 </div>
 <div  class="sponsor">
diff --git a/www/api/segment.html b/www/api/segment.html
index 52ee447..0d40e1c 100644
--- a/www/api/segment.html
+++ b/www/api/segment.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
+   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -193,7 +193,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/api/shear.html b/www/api/shear.html
index e09f384..d1ff629 100644
--- a/www/api/shear.html
+++ b/www/api/shear.html
@@ -265,7 +265,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/api/signature.html b/www/api/signature.html
index fcf34d5..4c27cf8 100644
--- a/www/api/signature.html
+++ b/www/api/signature.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -179,7 +179,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/api/statistic.html b/www/api/statistic.html
index 57b3ab2..9224a65 100644
--- a/www/api/statistic.html
+++ b/www/api/statistic.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -360,7 +360,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/api/stream.html b/www/api/stream.html
index 3f1e204..8cd5813 100644
--- a/www/api/stream.html
+++ b/www/api/stream.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
+   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/api/version.html b/www/api/version.html
index 73148cc..b4cfd7a 100644
--- a/www/api/version.html
+++ b/www/api/version.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/architecture.html b/www/architecture.html
index 922d90c..525509f 100644
--- a/www/architecture.html
+++ b/www/architecture.html
@@ -1330,7 +1330,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/binary-releases.html b/www/binary-releases.html
index 57a036c..be7e47a 100644
--- a/www/binary-releases.html
+++ b/www/binary-releases.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
+   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -373,7 +373,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/changelog.html b/www/changelog.html
index 8d1c029..39fcf88 100644
--- a/www/changelog.html
+++ b/www/changelog.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -1449,7 +1449,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/cipher.html b/www/cipher.html
index c0ebcbb..7cb0a70 100644
--- a/www/cipher.html
+++ b/www/cipher.html
@@ -125,7 +125,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -205,7 +205,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/color.html b/www/color.html
index 9170dc9..81c2b98 100644
--- a/www/color.html
+++ b/www/color.html
@@ -5018,7 +5018,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/command-line-options.html b/www/command-line-options.html
index f81b8b7..0d31750 100644
--- a/www/command-line-options.html
+++ b/www/command-line-options.html
@@ -5847,7 +5847,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/command-line-processing.html b/www/command-line-processing.html
index eb1456c..c6e0d09 100644
--- a/www/command-line-processing.html
+++ b/www/command-line-processing.html
@@ -124,6 +124,9 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
+   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
+</div>
+<div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
 </div>
 <div  class="sponsor">
@@ -630,7 +633,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/command-line-tools.html b/www/command-line-tools.html
index 9305050..627d633 100644
--- a/www/command-line-tools.html
+++ b/www/command-line-tools.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -154,11 +154,11 @@
 

 <p class="navigation-index">[<a href="#animate">animate</a> &bull; <a href="#compare">compare</a> &bull; <a href="#composite">composite</a> &bull; <a href="#conjure">conjure</a> &bull; <a href="#convert">convert</a> &bull; <a href="#display">display</a> &bull; <a href="#identify">identify</a> &bull; <a href="#import">import</a> &bull; <a href="#mogrify">mogrify</a> &bull; <a href="#montage">montage</a> &bull; <a href="#stream">stream</a>]</p>
 
-<p>ImageMagick includes a number of command-line utilities for manipulating images.  Most of you are probably accustomed to editing images one at a time with a graphical user interface (GUI) with such programs as <a href="http://www.gimp.org" target="696698939">gimp</a> or <a href="http://www.adobe.com" target="1666013772">Photoshop</a>.  However, a GUI is not always convenient.  Suppose you want to process an image dynamically from a web script or you want to apply the same operations to many images or repeat a specific operation at different times to the same or different image.  For these types of operations, the command-line image processing utility is appropriate.</p>
+<p>ImageMagick includes a number of command-line utilities for manipulating images.  Most of you are probably accustomed to editing images one at a time with a graphical user interface (GUI) with such programs as <a href="http://www.gimp.org" target="344902172">gimp</a> or <a href="http://www.adobe.com" target="797877852">Photoshop</a>.  However, a GUI is not always convenient.  Suppose you want to process an image dynamically from a web script or you want to apply the same operations to many images or repeat a specific operation at different times to the same or different image.  For these types of operations, the command-line image processing utility is appropriate.</p>
 
 <p>The ImageMagick command-line tools exit with a status of 0 if the command line arguments have a proper syntax and no problems are encountered.  Expect a descriptive message and an exit status of 1 if any exception occurs such as improper syntax, a problem reading or writing an image, or any other problem that prevents the command from completing successfully.</p>
 
-<p>In the paragraphs below, find a short description for each command-line tool. Click on the program name to get details about the program usage and a list of command-line options that alters how the program behaves.  If you are just getting acquainted with ImageMagick, start with the <a href="#convert">convert</a> program.  Be sure to peruse Anthony Thyssen's tutorial on how to use ImageMagick utilities to <a href="http://www.imagemagick.org/Usage/" target="923081578">convert, compose, or edit</a> images from the command-line.</p>
+<p>In the paragraphs below, find a short description for each command-line tool. Click on the program name to get details about the program usage and a list of command-line options that alters how the program behaves.  If you are just getting acquainted with ImageMagick, start with the <a href="#convert">convert</a> program.  Be sure to peruse Anthony Thyssen's tutorial on how to use ImageMagick utilities to <a href="http://www.imagemagick.org/Usage/" target="2070658975">convert, compose, or edit</a> images from the command-line.</p>
 
 <div style="margin: auto;">
   <h2><a name="animate"></a><a href="../www/animate.html">animate</a></h2>
@@ -232,7 +232,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/compare.html b/www/compare.html
index 5158c71..a7e60cc 100644
--- a/www/compare.html
+++ b/www/compare.html
@@ -125,7 +125,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -396,7 +396,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/composite.html b/www/composite.html
index c668446..f29444e 100644
--- a/www/composite.html
+++ b/www/composite.html
@@ -600,7 +600,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/conjure.html b/www/conjure.html
index 04da16b..8fbfc5a 100644
--- a/www/conjure.html
+++ b/www/conjure.html
@@ -125,7 +125,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -306,7 +306,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/contact.html b/www/contact.html
index 1e9ad61..51ffc86 100644
--- a/www/contact.html
+++ b/www/contact.html
@@ -124,9 +124,6 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
-</div>
-<div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
 </div>
 <div  class="sponsor">
@@ -160,7 +157,7 @@
     <h2>Contact the Development Team</h2>
   </div>
 
-  <p>Use this form to contact the ImageMagick Wizards for any of the issues listed below.  You can expect a reply within 24-48 hours if your message is a sponsorshp, license, or security issue.  The bug and documentation issues are for reporting only.  For any other issue, post your message to the <a href="http://www.imagemagick.org/discourse-server" target="881553509">discourse server</a>.</p>
+  <p>Use this form to contact the ImageMagick Wizards for any of the issues listed below.  You can expect a reply within 24-48 hours if your message is a sponsorshp, license, or security issue.  The bug and documentation issues are for reporting only.  For any other issue, post your message to the <a href="http://www.imagemagick.org/discourse-server" target="907008375">discourse server</a>.</p>
   <fieldset>
   <legend>Contact the Wizards</legend>
 	<p>Enter this code, <em class="warn">
@@ -216,7 +213,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/convert.html b/www/convert.html
index 42c2756..77e1485 100644
--- a/www/convert.html
+++ b/www/convert.html
@@ -1280,7 +1280,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/display.html b/www/display.html
index ec7b71c..6613d70 100644
--- a/www/display.html
+++ b/www/display.html
@@ -125,7 +125,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/download.html b/www/download.html
index 1b65488..0dda987 100644
--- a/www/download.html
+++ b/www/download.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -204,7 +204,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/examples.html b/www/examples.html
index 4f86442..834dc0e 100644
--- a/www/examples.html
+++ b/www/examples.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -152,7 +152,7 @@
 

 <div class="main">

 

-<p>Here are a few examples of what you can do with an image using ImageMagick from the command line, a program interface, or script.  You can generate this image yourself with this <a href="../www/perl-magick.html">PerlMagick</a> script, <a href="../www/source/examples.pl" target="911729279">examples.pl</a>.</p><br />
+<p>Here are a few examples of what you can do with an image using ImageMagick from the command line, a program interface, or script.  You can generate this image yourself with this <a href="../www/perl-magick.html">PerlMagick</a> script, <a href="../www/source/examples.pl" target="495206570">examples.pl</a>.</p><br />
 
 <div class="viewport">
   <img src="../images/examples.jpg" alt="[ImageMagick]" width="734" height="2972" border="0" name="titlebar-west" />
diff --git a/www/exception.html b/www/exception.html
index 648ada1..7a5211c 100644
--- a/www/exception.html
+++ b/www/exception.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/formats.html b/www/formats.html
index 9be9a8c..1c271bf 100644
--- a/www/formats.html
+++ b/www/formats.html
@@ -125,7 +125,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/high-dynamic-range.html b/www/high-dynamic-range.html
index 8c23573..765c237 100644
--- a/www/high-dynamic-range.html
+++ b/www/high-dynamic-range.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -192,7 +192,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/history.html b/www/history.html
index ab5aac6..65b0f5d 100644
--- a/www/history.html
+++ b/www/history.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
+   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -164,7 +164,7 @@
 

 <p>The next generation of ImageMagick, version 5, started when Bob Friesenhahn contacted me and suggested I improve the application programming interface so users could leverage the image-processing algorithms from other languages or scripts.  Bob also wrote a C++ wrapper for ImageMagick called Magick++, and began contributing enhancements such as the module loader facility, automatic file identification, and test suites.  In the mean-time, the project picked up a few other notable contributors: Glenn Randers-Pehrson, William Radcliffe, and Leonard Rosenthol.  By now, ImageMagick was being utilized by tens of thousands of users, who reacted gruffly when a new release broke an existing API call or script.  The other members of the group wanted to freeze the API and command line but I was not quite ready, since ImageMagick was not quite what I had envisioned it could be. Bob and the others created a fork of ImageMagick while I continued to develop ImageMagick.</p>

 

-<p>I did not work alone for long.  Anthony Thyssen contacted me about deficiencies in the ImageMagick command line programs.  He pointed out that the command line was confusing when dealing with more than one image. He suggested an orderly, well-defined method for dealing with the command line, and this became ImageMagick version 6 (the current release). His efforts are detailed on his web pages, <a href="http://www.imagemagick.org/Usage/" target="268310168">Examples of ImageMagick Usage</a>.  I highly recommend that you peruse his site. He has illustrated the power of ImageMagick in ways that even I did not know were possible.</p>

+<p>I did not work alone for long.  Anthony Thyssen contacted me about deficiencies in the ImageMagick command line programs.  He pointed out that the command line was confusing when dealing with more than one image. He suggested an orderly, well-defined method for dealing with the command line, and this became ImageMagick version 6 (the current release). His efforts are detailed on his web pages, <a href="http://www.imagemagick.org/Usage/" target="942639933">Examples of ImageMagick Usage</a>.  I highly recommend that you peruse his site. He has illustrated the power of ImageMagick in ways that even I did not know were possible.</p>

 

 <p>It has been 20 years since ImageMagick was first conceived, and it looks likely that it will be here for another 20 and beyond. The command line and the application programming interface are stable, but there is still work to do.  We are currently working on improving the conjure utility, Scalable Vector Graphics (SVG) support, and adding better support for video formats.</p>

 

@@ -176,7 +176,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/identify.html b/www/identify.html
index 54bebb5..cd8d3fe 100644
--- a/www/identify.html
+++ b/www/identify.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/import.html b/www/import.html
index add2f26..ca119de 100644
--- a/www/import.html
+++ b/www/import.html
@@ -125,7 +125,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/install-source.html b/www/install-source.html
index 0a882d6..1b482cd 100644
--- a/www/install-source.html
+++ b/www/install-source.html
@@ -223,7 +223,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/jp2.html b/www/jp2.html
index 3ae9d70..391326d 100644
--- a/www/jp2.html
+++ b/www/jp2.html
@@ -125,9 +125,6 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
-</div>
-<div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
 </div>
 <div  class="sponsor">
diff --git a/www/license.html b/www/license.html
index 664dcb4..0b9eaa1 100644
--- a/www/license.html
+++ b/www/license.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/links.html b/www/links.html
index 07ddb09..099e80c 100644
--- a/www/links.html
+++ b/www/links.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -160,23 +160,23 @@
   <h2><a name="command-line"></a>Command-line Tutorials</h2>
 </div>
 <ul>
-  <dt><a href="http://www.imagemagick.org/Usage/" target="546747733">Examples of ImageMagick Usage</a></dt>
-  <dt><a href="http://software.newsforge.com/article.pl?sid=05/04/29/1358220" target="233517611">Advanced image editing from the command line with ImageMagick</a></dt>
-  <dt><a href="http://www.applematters.com/index.html/section/comments/1113/" target="337509235">Best Open Source Software for the Macintosh</a></dt>
-  <dt><a href="http://software.newsforge.com/article.pl?sid=05/07/01/1959251" target="2016888400">Command-line animations using ImageMagick</a></dt>
-  <dt><a href="http://www.builderau.com.au/program/linux/soa/Convert_images_with_open_source_ImageMagick/0,339028299,339271774,00.htm" target="694364471">Convert Images with Open Source ImageMagick</a></dt>
-  <dt><a href="http://polishlinux.org/apps/graphics/enchanting-pictures-with-imagemagick/" target="1502600892">Enchanting Pictures with ImageMagick</a></dt>
-  <dt><a href="http://www-106.ibm.com/developerworks/library/l-graf/?ca=dnt-428" target="272244796">Graphics from the Command Line</a></dt>
-  <dt><a href="http://www.ars-informatica.ca/article.html?article=22" target="1071273026">Image creation, conversion and manipulation with ImageMagick</a></dt>
-  <dt><a href="http://www.applematters.com/index.html/section/comments/2104/" target="1462820798">Image Editing for Power Users on the Mac</a></dt>
-  <dt><a href="http://applications.linux.com/article.pl?sid=05/03/29/1525217" target="268256047">ImageMagick: A graphics wizard for the command line</a></dt>
-  <dt><a href="http://www.ioncannon.net/linux/81/5-imagemagick-command-line-examples-part-1/" target="253576665">ImageMagick command line examples - part 1</a></dt>
-  <dt><a href="http://www.ioncannon.net/linux/72/5-imagemagick-command-line-examples-part-2/" target="1960783361">ImageMagick command line examples - part 2</a></dt>
-  <dt><a href="http://www.rabuser.info/jmagick.html" target="1670927935">ImageMagick &amp; Java</a></dt>
-  <dt><a href="http://www.jpeek.com/articles/linuxmag/0606.pdf" target="1469067634">ImageMagick, Part One</a></dt>
-  <dt><a href="http://www.jpeek.com/articles/linuxmag/0607.pdf" target="913520287">ImageMagick, Part Two</a></dt>
-  <dt><a href="http://www-106.ibm.com/developerworks/library/l-graf2/?ca=dgr-lnxw15GraphicsLine" target="1099433888">More Graphics from the Command Line</a></dt>
-  <dt><a href="http://www.ffnn.nl/pages/projects/ubuntu-firefox-themes.html" target="1856897095">Ubuntu Firefox Themes</a></dt>
+  <dt><a href="http://www.imagemagick.org/Usage/" target="605069460">Examples of ImageMagick Usage</a></dt>
+  <dt><a href="http://software.newsforge.com/article.pl?sid=05/04/29/1358220" target="2137030304">Advanced image editing from the command line with ImageMagick</a></dt>
+  <dt><a href="http://www.applematters.com/index.html/section/comments/1113/" target="2082632609">Best Open Source Software for the Macintosh</a></dt>
+  <dt><a href="http://software.newsforge.com/article.pl?sid=05/07/01/1959251" target="608059417">Command-line animations using ImageMagick</a></dt>
+  <dt><a href="http://www.builderau.com.au/program/linux/soa/Convert_images_with_open_source_ImageMagick/0,339028299,339271774,00.htm" target="931479688">Convert Images with Open Source ImageMagick</a></dt>
+  <dt><a href="http://polishlinux.org/apps/graphics/enchanting-pictures-with-imagemagick/" target="1705213134">Enchanting Pictures with ImageMagick</a></dt>
+  <dt><a href="http://www-106.ibm.com/developerworks/library/l-graf/?ca=dnt-428" target="926848088">Graphics from the Command Line</a></dt>
+  <dt><a href="http://www.ars-informatica.ca/article.html?article=22" target="49229996">Image creation, conversion and manipulation with ImageMagick</a></dt>
+  <dt><a href="http://www.applematters.com/index.html/section/comments/2104/" target="115806144">Image Editing for Power Users on the Mac</a></dt>
+  <dt><a href="http://applications.linux.com/article.pl?sid=05/03/29/1525217" target="1840211915">ImageMagick: A graphics wizard for the command line</a></dt>
+  <dt><a href="http://www.ioncannon.net/linux/81/5-imagemagick-command-line-examples-part-1/" target="502493502">ImageMagick command line examples - part 1</a></dt>
+  <dt><a href="http://www.ioncannon.net/linux/72/5-imagemagick-command-line-examples-part-2/" target="1550218494">ImageMagick command line examples - part 2</a></dt>
+  <dt><a href="http://www.rabuser.info/jmagick.html" target="1458221574">ImageMagick &amp; Java</a></dt>
+  <dt><a href="http://www.jpeek.com/articles/linuxmag/0606.pdf" target="529144837">ImageMagick, Part One</a></dt>
+  <dt><a href="http://www.jpeek.com/articles/linuxmag/0607.pdf" target="536809360">ImageMagick, Part Two</a></dt>
+  <dt><a href="http://www-106.ibm.com/developerworks/library/l-graf2/?ca=dgr-lnxw15GraphicsLine" target="1240629032">More Graphics from the Command Line</a></dt>
+  <dt><a href="http://www.ffnn.nl/pages/projects/ubuntu-firefox-themes.html" target="1966949391">Ubuntu Firefox Themes</a></dt>
 </ul>
 
 <div style="margin: auto;">
@@ -184,18 +184,18 @@
 </div>
 
 <ul>
-  <dt><a href="http://www-128.ibm.com/developerworks/openwww/source/library/os-mosaic/?ca=dgr-lnxw09MosaicImages" target="1135607535">Create Mosaic Images with Perl and ImageMagick</a></dt>
-  <dt><a href="http://builder.com.com/5100-6371-5924990.html" target="2087013914">Convert images for printing with MagickWand for PHP</a></dt>
-  <dt><a href="http://www.sitepoint.com/article/dynamic-images-imagemagick" target="1293965886">Create Dynamic Images with ImageMagick</a></dt>
-  <dt><a href="http://www.clearimageonline.com/builder/pdf/imageservices.pdf" target="256102361">Image Services Add-on for Aestiva's HTML/OS and H2O</a></dt>
-  <dt><a href="http://www.ioncannon.net/php/75/how-to-compile-imagemagick-for-php-by-hand/" target="51003845">How to compile ImageMagick for PHP by hand</a></dt>
-  <dt><a href="http://members.shaw.ca/el.supremo/MagickWand/" target="146343362">MagickWand Examples in C</a></dt>
-  <dt><a href="http://www.html-editors.com/contest/1/82-read.html" target="651933441">PHP Extensions: MagickWand for PHP</a></dt>
-  <dt><a href="http://www.evolt.org/article/PHP_frontend_to_ImageMagick/17/55650/" target="310357222">PHP frontend to ImageMagick</a></dt>
-  <dt><a href="http://www.ioncannon.net/php/61/php-imagemagick-magickwand-examples/" target="2091082791">PHP ImageMagick MagickWand Examples</a></dt>
-  <dt><a href="http://www.imagemagick.org/RMagick/doc/rvgtut.html" target="368643802">RVG - Ruby Vector Graphics</a></dt>
-  <dt><a href="http://www.devshed.com/c/a/PHP/Security-Images-with-PHP-and-ImageMagick/" target="1078783483">Security Images with PHP and ImageMagick</a></dt>
-  <dt><a href="http://www.rubblewebs.co.uk/imagemagick/" target="1330234768">Simple Uses of PHP and ImageMagick</a></dt>
+  <dt><a href="http://www-128.ibm.com/developerworks/openwww/source/library/os-mosaic/?ca=dgr-lnxw09MosaicImages" target="934359992">Create Mosaic Images with Perl and ImageMagick</a></dt>
+  <dt><a href="http://builder.com.com/5100-6371-5924990.html" target="1508084159">Convert images for printing with MagickWand for PHP</a></dt>
+  <dt><a href="http://www.sitepoint.com/article/dynamic-images-imagemagick" target="737755119">Create Dynamic Images with ImageMagick</a></dt>
+  <dt><a href="http://www.clearimageonline.com/builder/pdf/imageservices.pdf" target="342578220">Image Services Add-on for Aestiva's HTML/OS and H2O</a></dt>
+  <dt><a href="http://www.ioncannon.net/php/75/how-to-compile-imagemagick-for-php-by-hand/" target="1872631707">How to compile ImageMagick for PHP by hand</a></dt>
+  <dt><a href="http://members.shaw.ca/el.supremo/MagickWand/" target="1262371209">MagickWand Examples in C</a></dt>
+  <dt><a href="http://www.html-editors.com/contest/1/82-read.html" target="683109081">PHP Extensions: MagickWand for PHP</a></dt>
+  <dt><a href="http://www.evolt.org/article/PHP_frontend_to_ImageMagick/17/55650/" target="1457564792">PHP frontend to ImageMagick</a></dt>
+  <dt><a href="http://www.ioncannon.net/php/61/php-imagemagick-magickwand-examples/" target="1392806195">PHP ImageMagick MagickWand Examples</a></dt>
+  <dt><a href="http://www.imagemagick.org/RMagick/doc/rvgtut.html" target="802499917">RVG - Ruby Vector Graphics</a></dt>
+  <dt><a href="http://www.devshed.com/c/a/PHP/Security-Images-with-PHP-and-ImageMagick/" target="1137623184">Security Images with PHP and ImageMagick</a></dt>
+  <dt><a href="http://www.rubblewebs.co.uk/imagemagick/" target="110147001">Simple Uses of PHP and ImageMagick</a></dt>
 </ul>
 
 <div style="margin: auto;">
@@ -203,10 +203,10 @@
 </div>
 
 <ul>
-  <dt><a href="http://beta.bigmedium.com/blog/imagemagick-install-osx.shtml" target="1145749734">Installing ImageMagick on Mac OS X</a></dt>
-  <dt><a href="http://www.cloudgoessocial.net/2010/02/10/imagemagick-for-iphone-via-snowleopard/" target="1575291453">ImageMagick on iPhone</a></dt>
-  <dt><a href="http://www.cloudgoessocial.net/2009/07/09/imagemagick-on-iphone-xcode/" target="1876982501">ImageMagick on iPhone - Xcode</a></dt>
-  <dt><a href="http://www.digitalsanctum.com/?s=ImageMagick" target="1379267345">Installing ImageMagick from Source on Ubuntu</a></dt>
+  <dt><a href="http://beta.bigmedium.com/blog/imagemagick-install-osx.shtml" target="1841653920">Installing ImageMagick on Mac OS X</a></dt>
+  <dt><a href="http://www.cloudgoessocial.net/2010/02/10/imagemagick-for-iphone-via-snowleopard/" target="1879979003">ImageMagick on iPhone</a></dt>
+  <dt><a href="http://www.cloudgoessocial.net/2009/07/09/imagemagick-on-iphone-xcode/" target="715216461">ImageMagick on iPhone - Xcode</a></dt>
+  <dt><a href="http://www.digitalsanctum.com/?s=ImageMagick" target="1831200576">Installing ImageMagick from Source on Ubuntu</a></dt>
 </ul>
 
 <div style="margin: auto;">
@@ -214,24 +214,24 @@
 </div>
 
 <ul>
-  <dt><a href="http://www.xs4all.nl/%7Ebvdwolf/main/foto/down_sample/down_sample.htm" target="1912800688">Down-sampling Methods</a></dt>
+  <dt><a href="http://www.xs4all.nl/%7Ebvdwolf/main/foto/down_sample/down_sample.htm" target="1815127964">Down-sampling Methods</a></dt>
 </ul>
 
 <div style="margin: auto;">
   <h2><a name="book-review"></a>ImageMagick Book Review</h2>
 </div>
 <ul>
-  <dt><a href="http://www.linux.com/article.pl?sid=06/09/29/1917210" target="1746387253">Book review: ImageMagick Tricks</a></dt>
-  <dt><a href="http://books.slashdot.org/books/06/03/13/1442239.shtml" target="2073631817">The Definitive Guide To ImageMagick</a></dt>
+  <dt><a href="http://www.linux.com/article.pl?sid=06/09/29/1917210" target="1323275879">Book review: ImageMagick Tricks</a></dt>
+  <dt><a href="http://books.slashdot.org/books/06/03/13/1442239.shtml" target="615196616">The Definitive Guide To ImageMagick</a></dt>
 </ul>
 
 <div style="margin: auto;">
   <h2><a name="command-line"></a>Mailing List Archives</h2>
 </div>
 <ul>
-  <dt><a href="http://www.archivesat.com/ImageMagick_Users_List/" target="1267917932">ImageMagick Users List</a></dt>
-  <dt><a href="http://www.archivesat.com/ImageMagick_Developer_List/" target="2018632050">ImageMagick Developers List</a></dt>
-  <dt><a href="http://www.archivesat.com/ImageMagick_Defect_Support/" target="997421195">ImageMagick Bugs List</a></dt>
+  <dt><a href="http://www.archivesat.com/ImageMagick_Users_List/" target="1372857450">ImageMagick Users List</a></dt>
+  <dt><a href="http://www.archivesat.com/ImageMagick_Developer_List/" target="102640319">ImageMagick Developers List</a></dt>
+  <dt><a href="http://www.archivesat.com/ImageMagick_Defect_Support/" target="664426613">ImageMagick Bugs List</a></dt>
 </ul>
 
 <div style="margin: auto;">
@@ -239,13 +239,13 @@
 </div>
 <dl>
   <dt>Denmark</dt>
-    <dd><a href="http://imagemagick.europnews.de" target="583255082">http://imagemagick.europnews.de</a></dd><br />
+    <dd><a href="http://imagemagick.europnews.de" target="1488663594">http://imagemagick.europnews.de</a></dd><br />
   <dt>Germany</dt>
-    <dd><a href="http://imagemagick.linux-mirror.org" target="139404449">http://imagemagick.linux-mirror.org</a></dd><br />
+    <dd><a href="http://imagemagick.linux-mirror.org" target="1942852234">http://imagemagick.linux-mirror.org</a></dd><br />
   <dt>Ireland</dt>
-    <dd><a href="http://imagemagick.oss-mirror.org" target="1250997860">http://imagemagick.oss-mirror.org</a></dd><br />
+    <dd><a href="http://imagemagick.oss-mirror.org" target="1166920115">http://imagemagick.oss-mirror.org</a></dd><br />
   <dt>United States</dt>
-    <dd><a href="http://www.imagemagick.org" target="396554796">http://www.imagemagick.org</a></dd>
+    <dd><a href="http://www.imagemagick.org" target="891398441">http://www.imagemagick.org</a></dd>
 </dl>
 
 <div style="margin: auto;">
@@ -253,16 +253,16 @@
 </div>
 
 <ul>
-  <dt><a href="http://gmic.sourceforge.net/" target="1810332385">G'MIC</a>: convert, manipulate and visualize generic 1D/2D/3D multi-spectral image files</dt>
-  <dt><a href="http://www.beesoft.org/index.html?id=imagicom" target="572581846">Image Commander</a>: bulk picture processing with a GUI</dt>
+  <dt><a href="http://gmic.sourceforge.net/" target="1253590160">G'MIC</a>: convert, manipulate and visualize generic 1D/2D/3D multi-spectral image files</dt>
+  <dt><a href="http://www.beesoft.org/index.html?id=imagicom" target="1696064953">Image Commander</a>: bulk picture processing with a GUI</dt>
 </ul>
 
 <div style="margin: auto;">
   <h2><a name="other-projects"></a>Other Projects Hosted by ImageMagick Studio</h2>
 </div>
 <ul>
-  <dt><a href="http://www.wizards-toolkit.org" target="1310075083">Wizard's Toolkit</a></dt>
-  <dt><a href="http://www.multipole.org" target="762282625">Computational Simulation of Multi-Body Interactions with O(n) Scaling</a></dt>
+  <dt><a href="http://www.wizards-toolkit.org" target="1428207801">Wizard's Toolkit</a></dt>
+  <dt><a href="http://www.multipole.org" target="346735544">Computational Simulation of Multi-Body Interactions with O(n) Scaling</a></dt>
 </ul>
 
 

diff --git a/www/magick-wand.html b/www/magick-wand.html
index bc13948..f10e120 100644
--- a/www/magick-wand.html
+++ b/www/magick-wand.html
@@ -125,7 +125,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
+   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/mirrors.html b/www/mirrors.html
index 07736b5..1102dd8 100644
--- a/www/mirrors.html
+++ b/www/mirrors.html
@@ -155,9 +155,9 @@
 <p>The ImageMagick web site is available from a variety of web mirrors around the world listed below.</p>
 <dl class="magick-mirror">
   <dt>France</dt>
-    <dd><a href="http://imagemagick.europnews.de/" target="1575205468">http://imagemagick.europnews.de/</a></dd><br />
+    <dd><a href="http://imagemagick.europnews.de/" target="118190026">http://imagemagick.europnews.de/</a></dd><br />
   <dt>Unites States</dt>
-    <dd><a href="http://www.imagemagick.org/" target="1139778038">http://www.imagemagick.org/</a></dd>
+    <dd><a href="http://www.imagemagick.org/" target="16884896">http://www.imagemagick.org/</a></dd>
 </dl>
 <p>If you want to add a new web-site mirror, please <a href="http://www.imagemagick.org/script/contact.php">contact us</a>.</p>
 

@@ -167,7 +167,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/mogrify.html b/www/mogrify.html
index 9ea3ff9..8e8eaf2 100644
--- a/www/mogrify.html
+++ b/www/mogrify.html
@@ -125,7 +125,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
+   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -1278,7 +1278,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/montage.html b/www/montage.html
index 9239e36..1843960 100644
--- a/www/montage.html
+++ b/www/montage.html
@@ -698,7 +698,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/motion-picture.html b/www/motion-picture.html
index 22123ce..f492268 100644
--- a/www/motion-picture.html
+++ b/www/motion-picture.html
@@ -125,7 +125,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/perl-magick.html b/www/perl-magick.html
index 219e268..1fdaa35 100644
--- a/www/perl-magick.html
+++ b/www/perl-magick.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
diff --git a/www/quantize.html b/www/quantize.html
index 296c2cc..d181cb6 100644
--- a/www/quantize.html
+++ b/www/quantize.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -285,7 +285,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/search.html b/www/search.html
index 24bf6ff..1ef1e17 100644
--- a/www/search.html
+++ b/www/search.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -166,7 +166,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/sitemap.html b/www/sitemap.html
index 6ad45ea..ce3f2d1 100644
--- a/www/sitemap.html
+++ b/www/sitemap.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -163,7 +163,7 @@
 <dl>

   <dd><a href="../www/index.html">Introduction</a>: convert, edit, and compose images from the command-line or program interface.</dd>

   <dd><a href="../www/examples.html">Examples of ImageMagick usage</a>: a few examples that show what you can do with an image using ImageMagick.</dd>

-  <dd><a href="http://www.imagemagick.org/Usage/" target="1553461656">Anthony Thyssen's examples of ImageMagick usage</a>:  a comprehensive tutorial of using ImageMagick from the command line.</dd>

+  <dd><a href="http://www.imagemagick.org/Usage/" target="1744358554">Anthony Thyssen's examples of ImageMagick usage</a>:  a comprehensive tutorial of using ImageMagick from the command line.</dd>

   <dd><a href="../www/color.html">Color names</a>: how to specify a color name, a hex color, or a numerical RGB, RGBA, HSL, HSLA, CMYK, or CMYKA color.</dd>

   <dd><a href="../www/resources.html">Resources</a>: ImageMagick depends on external resources including configuration files, loadable modules, fonts, and environment variables.</dd>

   <dd><a href="../www/architecture.html">Architecture</a>: get to know more about the software and algorithms behind ImageMagick.</dd>

@@ -177,12 +177,12 @@
 <dl>

   <dd><a href="../www/download.html">Download ImageMagick</a>: ImageMagick source and binary distributions are available from a variety of FTP and Web mirrors.</dd>

   <ul>

-    <dd><a href="http://www.imagemagick.org/download" target="432209097">Unix source</a>: Unix source distributions.</dd>

-    <dd><a href="http://www.imagemagick.org/download/windows" target="189852980">Windows source</a>: Windows source distributions.</dd>

-    <dd><a href="http://www.imagemagick.org/download/binaries" target="1888366013">Unix and Windows binaries</a>: Unix and Windows binary distributions.</dd>

+    <dd><a href="http://www.imagemagick.org/download" target="936208475">Unix source</a>: Unix source distributions.</dd>

+    <dd><a href="http://www.imagemagick.org/download/windows" target="1282171060">Windows source</a>: Windows source distributions.</dd>

+    <dd><a href="http://www.imagemagick.org/download/binaries" target="1408553599">Unix and Windows binaries</a>: Unix and Windows binary distributions.</dd>

     <dd><a href="../www/subversion.html">Subversion repository</a>: stable and development source releases.</dd>

-    <dd><a href="http://www.magickwand.org/" target="434385482">MagickWand for PHP</a>: a native PHP-extension to the ImageMagick MagickWand API.</dd>

-    <dd><a href="http://www.imagemagick.org/download/delegates" target="1872173795">Delegate libraries</a>: ImageMagick depends on a number of optional delegate libraries to extend its functionality.</dd>

+    <dd><a href="http://www.magickwand.org/" target="1613883042">MagickWand for PHP</a>: a native PHP-extension to the ImageMagick MagickWand API.</dd>

+    <dd><a href="http://www.imagemagick.org/download/delegates" target="1782079779">Delegate libraries</a>: ImageMagick depends on a number of optional delegate libraries to extend its functionality.</dd>

   </ul>

 </dl>

 

@@ -221,7 +221,7 @@
   <dd><a href="../www/command-line-processing.html">Command line processing</a>: the anatomy of the command line.</dd>

   <dd><a href="../www/command-line-options.html">Command line options</a>: annotated list of all options that can appear on the command-line.</dd>

   <dd><a href="../www/fx.html">Fx</a>: apply a mathematical expression to an image or image channels.</dd>

-  <dd><a href="http://www.fmwconcepts.com/imagemagick/" target="1995900928">Fred's ImageMagick Scripts</a>:  a plethora of command-line scripts that perform geometric transforms, blurs, sharpens, edging, noise removal, and color manipulations.</dd>

+  <dd><a href="http://www.fmwconcepts.com/imagemagick/" target="1991747214">Fred's ImageMagick Scripts</a>:  a plethora of command-line scripts that perform geometric transforms, blurs, sharpens, edging, noise removal, and color manipulations.</dd>

 </dl>

 

 <div style="margin: auto;">

@@ -231,21 +231,21 @@
 <dl>

   <dd><a href="../www/api.html">Program interfaces</a>: application programming interfaces.</dd>

   <ul>

-    <dd><a href="http://www.imagemagick.org/ChMagick" target="691778600">ChMagick</a>: is a <a href="http://www.softintegration.com/" target="1558500916">Ch</a> an embeddable MagickCore C/C++ interpreter for cross-platform scripting.</dd>

-    <dd><a href="http://common-lisp.net/project/cl-magick/" target="1693064606">CL-Magick</a>: provides a Common Lisp interface to the ImageMagick library.</dd>

-    <dd><a href="https://gna.org/projects/g2f/" target="2036677">G2F</a>: implements an Ada 95 binding to a subset of the low-level MagickCore library.</dd>

-    <dd><a href="http://www.imagemagick.org/Magick++" target="1240685193">Magick++</a>: provides an object-oriented C++ interface to ImageMagick.</dd>

-    <dd><a href="http://pecl.html.net/package/imagick" target="2000798909">IMagick</a>: is a native PHP extension to create and modify images using the ImageMagick API.</dd>

-    <dd><a href="http://www.yeo.id.au/jmagick/" target="445631397">JMagick</a>: provides an object-oriented Java interface to ImageMagick.</dd>

+    <dd><a href="http://www.imagemagick.org/ChMagick" target="324352470">ChMagick</a>: is a <a href="http://www.softintegration.com/" target="1330213588">Ch</a> an embeddable MagickCore C/C++ interpreter for cross-platform scripting.</dd>

+    <dd><a href="http://common-lisp.net/project/cl-magick/" target="2022977776">CL-Magick</a>: provides a Common Lisp interface to the ImageMagick library.</dd>

+    <dd><a href="https://gna.org/projects/g2f/" target="1157440038">G2F</a>: implements an Ada 95 binding to a subset of the low-level MagickCore library.</dd>

+    <dd><a href="http://www.imagemagick.org/Magick++" target="1020060890">Magick++</a>: provides an object-oriented C++ interface to ImageMagick.</dd>

+    <dd><a href="http://pecl.html.net/package/imagick" target="1195041198">IMagick</a>: is a native PHP extension to create and modify images using the ImageMagick API.</dd>

+    <dd><a href="http://www.yeo.id.au/jmagick/" target="1039231953">JMagick</a>: provides an object-oriented Java interface to ImageMagick.</dd>

     <dd><a href="../www/magick-core.html">MagickCore</a>: C API, recommended for wizard-level developers.</dd>

     <dd><a href="../www/magick-wand.html">MagickWand</a>: convert, compose, and edit images from the C language.</dd>

-    <dd><a href="http://www.magickwand.org/" target="365751783">MagickWand for PHP</a>: a native PHP-extension to the ImageMagick MagickWand API.</dd>

-    <dd><a href="http://code.google.com/p/nmagick" target="710806001">nMagick</a>: is a port of the ImageMagick library to the haXe and Neko platforms.</dd>

-    <dd><a href="http://wiki.lazarus.freepascal.org/index.html/PascalMagick" target="1534490572">PascalMagick</a>: a Pascal binding for the MagickWand API and also the low-level MagickCore library.</dd>

+    <dd><a href="http://www.magickwand.org/" target="420995770">MagickWand for PHP</a>: a native PHP-extension to the ImageMagick MagickWand API.</dd>

+    <dd><a href="http://code.google.com/p/nmagick" target="1169590428">nMagick</a>: is a port of the ImageMagick library to the haXe and Neko platforms.</dd>

+    <dd><a href="http://wiki.lazarus.freepascal.org/index.html/PascalMagick" target="1253061593">PascalMagick</a>: a Pascal binding for the MagickWand API and also the low-level MagickCore library.</dd>

     <dd><a href="../www/perl-magick.html">PerlMagick</a>: convert, compose, and edit images from the Perl language.</dd>

-    <dd><a href="http://www.imagemagick.org/download/python/" target="376968223">PythonMagick</a>: an object-oriented Python interface to ImageMagick.</dd>

-    <dd><a href="http://rmagick.rubyforge.org/" target="603152256">RMagick</a>: is an interface between the Ruby programming language and ImageMagick.</dd>

-    <dd><a href="http://tclmagick.sourceforge.net/" target="395860773">TclMagick</a>: a native Tcl-extension to the ImageMagick MagickWand API.</dd>

+    <dd><a href="http://www.imagemagick.org/download/python/" target="1767741772">PythonMagick</a>: an object-oriented Python interface to ImageMagick.</dd>

+    <dd><a href="http://rmagick.rubyforge.org/" target="1221860889">RMagick</a>: is an interface between the Ruby programming language and ImageMagick.</dd>

+    <dd><a href="http://tclmagick.sourceforge.net/" target="1998103507">TclMagick</a>: a native Tcl-extension to the ImageMagick MagickWand API.</dd>

   </ul>

 </dl>

 

@@ -263,8 +263,8 @@
 </div>

 

 <dl>

-  <dd><a href="http://www.amazon.com/exec/obidos/redirect?link_code=ur2&amp;camp=1789&amp;tag=imagemagick-20&amp;creative=9325&amp;path=tg/detail/-/1590595904/qid=1123551819/sr=8-1/ref=pd_bbs_sbs_1?v=glance%26s=books%26n=507846" target="1734435931">Definitive Guide to ImageMagick</a>: this book explains ImageMagick in a practical, learn-by-example fashion.</dd>

-  <dd><a href="http://www.amazon.com/exec/obidos/redirect?link_code=ur2&amp;camp=1789&amp;tag=imagemagick-20&amp;creative=9325&amp;path=tg/detail/-/1904811868/qid=1123551819/sr=8-1/ref=pd_bbs_sbs_1?v=glance%26s=books%26n=507846" target="1633587133">ImageMagick Tricks</a>: this book is packed with examples of photo manipulations, logo creation, animations, and complete web projects.</dd>

+  <dd><a href="http://www.amazon.com/exec/obidos/redirect?link_code=ur2&amp;camp=1789&amp;tag=imagemagick-20&amp;creative=9325&amp;path=tg/detail/-/1590595904/qid=1123551819/sr=8-1/ref=pd_bbs_sbs_1?v=glance%26s=books%26n=507846" target="1404384138">Definitive Guide to ImageMagick</a>: this book explains ImageMagick in a practical, learn-by-example fashion.</dd>

+  <dd><a href="http://www.amazon.com/exec/obidos/redirect?link_code=ur2&amp;camp=1789&amp;tag=imagemagick-20&amp;creative=9325&amp;path=tg/detail/-/1904811868/qid=1123551819/sr=8-1/ref=pd_bbs_sbs_1?v=glance%26s=books%26n=507846" target="1149545153">ImageMagick Tricks</a>: this book is packed with examples of photo manipulations, logo creation, animations, and complete web projects.</dd>

   <dd><a href="http://www.imagemagick.org/discourse-server">Discourse server</a>: get help from fellow ImageMagick users and developers, post to these forums.</dd>

   <dd><a href="http://www.imagemagick.org/script/contact.php">Contact the Wizards</a>: for bug reports (only if you do not want to sign up to the <a href="http://www.imagemagick.org/discourse-server">discourse server</a>), a source or documentation patch, a security or license issue, or if you want to be a sponsor of the ImageMagick project.</dd>

 </dl>

@@ -274,7 +274,7 @@
 </div>

 

 <dl>

-  <dd><a href="http://www.imagemagick.org/discourse-server/viewforum.html?f=3" target="1835234272">Report bugs and vulnerabilities</a>: our highest priority is to fix security defects and bug reports, usually within 48 hours of your report.  The bug discourse server requires that you register.  If you do not want to register, you can <a href="contact.html">contact the ImageMagick developers</a> with a convenient web form.</dd>

+  <dd><a href="http://www.imagemagick.org/discourse-server/viewforum.html?f=3" target="84179934">Report bugs and vulnerabilities</a>: our highest priority is to fix security defects and bug reports, usually within 48 hours of your report.  The bug discourse server requires that you register.  If you do not want to register, you can <a href="contact.html">contact the ImageMagick developers</a> with a convenient web form.</dd>

   <dd><a href="../www/sponsors.html">Sponsor ImageMagick</a>: contribute bug fixes, enhancements, hardware, funds, etc. to ensure the ImageMagick project thrives.</dd>

   <dd><a href="../www/t-shirt.html">ImageMagick t-shirt</a>: donate $25 USD and we acknowledge your gift with a logoed t-shirt.</dd>

 </dl>

@@ -298,9 +298,9 @@
   <h2><a name="sandbox"></a>Technology Sandbox</h2>

 </div>

 <dl>

-  <dd><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/sandbox" target="1722428667">Fast Fourier Transforms Toolkit</a></dd>

-  <dd><a href="http://www.fmwconcepts.com/imagemagick/linkcounter.html?dir=fourier_transforms/&linkname=fourier.html" target="113233922">Fourier Transform Processing With ImageMagick</a></dd>

-  <dd><a href="http://www.imagemagick.org/Usage/fourier/" target="420831678">ImageMagick v6 Examples -- Fourier Transforms</a></dd>

+  <dd><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/sandbox" target="1034885441">Fast Fourier Transforms Toolkit</a></dd>

+  <dd><a href="http://www.fmwconcepts.com/imagemagick/linkcounter.html?dir=fourier_transforms/&linkname=fourier.html" target="10745908">Fourier Transform Processing With ImageMagick</a></dd>

+  <dd><a href="http://www.imagemagick.org/Usage/fourier/" target="1382581301">ImageMagick v6 Examples -- Fourier Transforms</a></dd>

 </dl>

 

 

@@ -310,7 +310,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/sponsors.html b/www/sponsors.html
index 3bbf3e0..3c9ba7d 100644
--- a/www/sponsors.html
+++ b/www/sponsors.html
@@ -124,7 +124,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
+   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -240,7 +240,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/stream.html b/www/stream.html
index 3c7aba7..e6d2076 100644
--- a/www/stream.html
+++ b/www/stream.html
@@ -125,7 +125,7 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.renehornig.com/" title="Webdesign">Webdesign</a><!-- 20110101000120 -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
@@ -341,7 +341,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/subversion.html b/www/subversion.html
index 294544c..3c2baeb 100644
--- a/www/subversion.html
+++ b/www/subversion.html
@@ -176,7 +176,7 @@
  <!--    <span id="linkbar-west">&nbsp;</span>  -->

     <span id="linkbar-center">

       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;

-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>

     </span>

     <span id="linkbar-east">&nbsp;</span>

   </div>

diff --git a/www/t-shirt.html b/www/t-shirt.html
index 6e91a8c..e349dc0 100644
--- a/www/t-shirt.html
+++ b/www/t-shirt.html
@@ -124,9 +124,6 @@
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
-</div>
-<div  class="sponsor">
   <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
 </div>
 <div  class="sponsor">