function display1()
{
  //The container id
  var ad_position = new Array("adleft","adright");
  var ad_alt_position = new Array("left_ad","right_ad");
  //Get the base URL
  //Find out if ads have been blocked on the first ad
  for(i=0; i<=1; i++){
    var myTexttest = document.getElementById(ad_position[i]);
    var text_val_test = myTexttest.innerHTML;
    var search_results_test = text_val_test.search(/google_protectAndRun/); 

    if(search_results_test == -1)
      {
      //show alt ads
      document.getElementById(ad_alt_position[i]).style.display = ''; 
      // document.getElementById(ad_position[i]).innerHTML = ad_position[i];
    }else
      {
      document.getElementById(ad_alt_position[i]).style.display = 'none';            
    }
  }//For loop
}//Function display

window.onload = function() {display1(); }