function toggleMe(a){
  var e=document.getElementById(a);
  if(!e)return true;
  if(e.style.display=="block"){
    e.style.display="none"
    document.cookie="hide_ad=-1";
  } else {
   e.style.display="block" 
 }
  return true;
}

function checkMe(a){
  var e=document.getElementById(a);
  if(!e)return true;

if (document.cookie.indexOf("hide_ad")!=-1) { 
   e.style.display="none" 
  } else {
   e.style.display="block" 
 
}
  return true;
}


function resize(which, max) {
  var elem = document.getElementById(which);
  if (elem == undefined || elem == null) return false;
  if (max == undefined && document.cookie.indexOf("resize_image")!=-1) max = 750;
    if (elem.width > max) elem.width = max;
  } 