// <a href="javascript:selectAll('<form>.<textarea name>')">Select All</a>
// or onClick="javascript:selectAll('<form>.<textarea name>')"
function selectAll(textareaname) {
  var txtBuffer=eval("document."+textareaname)
  txtBuffer.focus() 
  txtBuffer.select() 
  if (document.all){ 
   var selText=txtBuffer.createTextRange() 
   selText.execCommand("Copy") 
   alert("This code has been copied to your clipboard.\nOpen your favorite editor and paste it in.\nIt\'s as simple as that.");
 }
}
function addBookmark(title, url){
  if(window.sidebar){ // Firefox
    window.sidebar.addPanel(title, url,'');
  }else if(window.opera){ //Opera
    var a = document.createElement("A");
    a.rel = "sidebar";
    a.target = "_search";
    a.title = title;
    a.href = url;
    a.click();
  } else if(document.all){ //IE
    window.external.AddFavorite(url, title);
  }
}
