Date: 11 December 2012
Solution provided for MM Support by: Amante Castino
==================================================  =
Intro: This is an extension/plugin s***** for allowing OAP_EB_Skin_ALL_v2.js (SkinComp)'s wallpaper clickable / not.
Usage: Add the following custom s***** first, to make the wallpaper clickable; then add <this> s***** to bind the on/off functions:
  
http://ds.serving-sys.com/BurstingRe...49045&refEleme...
Parameters (for this s*****): None
Order:
   - OAP_EB_Skin_ALL_v2.js
   - clickable_wallpaper_v2.js
   - OAD_SkinComp_ClickableWP_binder.js
Example:
 - 
http://ds.serving-sys.com/BurstingRe...LL_v2.js?adid=[%tp_adid%]
 - 
http://ds.serving-sys.com/BurstingRe...er_v2.js?adid=[%tp_adid%]&refEl...
 - 
http://ds.serving-sys.com/BurstingRe...leWP_binder.js
*/
(function(){
 if(typeof(applySkin)!='undefined'
 && typeof(SKParamsObj)!='undefined'
 ){
  var oldFnOn = applySkin;
  var oldFnOff = resetSkin;
  var clickable = function(showLink){
   if(typeof(csParams)!='undefined'
   && typeof(setClickableWp)!='undefined'
   ) {
    var css=showLink?'block':'none';
    ebLeftDiv.style.display=css;
    ebRightDiv.style.display=css;
   }
  };
  applySkin = function(skinNumber){
   oldFnOn(skinNumber);
   clickable(true);
  };
  resetSkin = function(){
   oldFnOff();
   clickable(false);
  };
 } else setTimeout(arguments.callee,50);
})();