// Script Source: CodeLifter.com
// Copyright 2002
// Edited by Fallen Angel @ ecanus.net for XHTML compliancy, 2006
// Do not remove this notice
var isReady = false;
function showAddress(What){
  if (isReady){
    document.Which.Where.value = What;
    document.Which.Where.focus();
    document.Which.Where.select();
  }else{
    alert("Patience is a virtue...\nPlease wait for the page to finish loading before you try and click the smileys.");
  }
}
function clearAddress(){
  if (isReady){
    document.Which.Where.value = '';
  }else{
    alert("Patience is a virtue...\nPlease wait for the page to finish loading before you try and click the smileys.");
  }
}
