function addBookmark(url, title) 
{ 
  if (!url) url = location.href; 
  if (!title) title = document.title; 
  
  //Gecko 
  if ((typeof window.sidebar == "object") && (typeof window.sidebar.addPanel == "function")) window.sidebar.addPanel ("BadExGFs.com - The biggest homemade porn archive", "http://www.badexgfs.com/", ""); 
  //IE4+ 
  else if (typeof window.external == "object") window.external.AddFavorite("http://www.badexgfs.com/", "BadExGFs.com - The biggest homemade porn archive"); 
  //Opera7+ 
  else if (window.opera && document.createElement) 
  { 
    var a = document.createElement('A'); 
    if (!a) return false; //IF Opera 6 
    a.setAttribute('rel','sidebar'); 
    a.setAttribute('href',url); 
    a.setAttribute('title',title); 
    a.click(); 
  } 
  else {
alert("To bookmark BadExGFs.com, simply press the CTRL key and the D key at the same time. Visit us later!");
return false;
}
return true;
} 

