// puzgi js

//facebook paylaş
function fbs_click() {u=location.href;t=document.title;window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');return false;}

  if (top.location != location) {
    top.location.href = document.location.href;
  }
// sayfa yukarı cık
function getFocus() {
  // place the id below of the field you want to have focus upon page load
  var focusHere = document.getElementById("q");
  focusHere = focusHere.focus();
}

// arama butonu sayfa acıldığında
function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      if (oldonload) {
        oldonload();
      }
      func();
    }
  }
}

addLoadEvent(function() {
  getFocus();
});

// sözlük , video aktivate

function ShowReg(op) {
  document.getElementById('video').style.display='none';
  document.getElementById('haber').style.display='none';
  document.getElementById('sozluk').style.display='none';

  if (op == 0) {
    document.getElementById('video').style.display="block";
  }
  if (op == 1) {
    document.getElementById('haber').style.display="block";
  }
  if (op == 2) {
    document.getElementById('sozluk').style.display="block";
  }
}

// ac kapa
function toggleMe(obj, a){
  var e=document.getElementById(a);
  if(!e)return true;
    e.style.display="block"
  return true;
}

function toggleMe2(obj, a){
  var e=document.getElementById(a);
  if(!e)return true;
    e.style.display="none"
  return true;
}