<!--

function WM_imageSwap(daImage, daSrc){
  var objStr,obj;
      if(document.images){
      if (typeof(daImage) == 'string') {
        objStr = 'document.' + daImage;
      obj = eval(objStr);
      obj.src = daSrc;
    } else if ((typeof(daImage) == 'object') && daImage && daImage.src) {
      daImage.src = daSrc;
    }
  }
}
//
  /*
    WM_imageSwap()
    Changes the source of an image.

    Source: Webmonkey Code Library
    (http://www.hotwired.com/webmonkey/javascript/code_library/)

    Author: Shvatz
    Author Email: shvatz@wired.com
 
    This Code is subject to the terms, conditions, warranties, 
    and disclaimers of the Webmonkey Public License, Version 1.0 located at
    http://www.hotwired.com/webmonkey/javascript/code_library/license/wpl.html.
    Original Code is (c) 1998 Wired Digital Inc. 
    All Rights Reserved.
    This Code came from the Webmonkey Code Library located at
    http://www.hotwired.com/webmonkey/javascript/code_library/. Webmonkey is
    a registered trademark of Wired Ventures Inc. 
    */
// -->

