/*
 * Erobo Ads Agent 1.5.3
 * v1.5.3 - 29-September-2009
 * v1.5.2 - 27-August-2009
 * v1.5.1 - 13-February-2009
 * v1.5.0 - 20-December-2008
 * v1.0.3 - 23-March-2009
 * v1.0.2 - 13-March-2009
 * v1.0.1 - 20-July-2009
 * v1.0.0 - 13-April-2008
 * http://www.erobosoftware.com
 * contact Us at: services@erobosoftware.com for advertising opportunities.
 */
  
  
/*
 * Show ads from ad terminals
 * Currently showing them on Forums, Search, and Script pages
 */
function showEroboAds()
{
  var ua_ad_client_on_mobile = navigator.userAgent.toLowerCase();
  
  var mobile_client = 0;
  
  if(ua_ad_client_on_mobile.indexOf("iphone") > -1) {
    mobile_client = 1;
  }
  
  if(ua_ad_client_on_mobile.indexOf("ipod") > -1) {
    mobile_client = 1;
  }
  
  if(ua_ad_client_on_mobile.indexOf("series60") > -1) {
    mobile_client = 1;
  }
  
  if(ua_ad_client_on_mobile.indexOf("symbian") > -1) {
    mobile_client = 1;
  }
  
  if(ua_ad_client_on_mobile.indexOf("webkit") > -1) {
    mobile_client = 1;
  }
  
  if(ua_ad_client_on_mobile.indexOf("android") > -1) {
    mobile_client = 1;
  }
  
  if(ua_ad_client_on_mobile.indexOf("windows ce") > -1) {
    mobile_client = 1;
  }
  
  if(ua_ad_client_on_mobile.indexOf("blackberry") > -1) {
    mobile_client = 1;
  }
  
  if(ua_ad_client_on_mobile.indexOf("palm") > -1) {
    mobile_client = 1;
  }
  
  if(mobile_client == 1) {
    document.getElementById("ad52801").style.display = "block"
  } else {
    document.getElementById("ad99482").style.display = "block"
  }
  
}



