function picksmallAD(path){
  n = randumb(4)-1;
  URL = [ 'http://www.goodbyedoggy.com/', 'http://www.wizardmaster.com/', 'http://www.reinformation.com/', 'http://www.reinformation.com/ombiont'];
  SRC = [ 'sm_gd.gif', 'sm_wm.gif', 'sm_ori.gif', 'sm_ombi.gif'];
  ALT = [ 'visit our friends at goodbyedoggy.com', 'visit the wonderful world of wizard master', 'visit with the innovators of computer ROCK', 'experience the instant lifeless pestilence'];
  return '<a href="'+ URL[n] +'" target="_blank"><img src="'+ path + SRC[n] +'" width="103" height="103" alt="'+ ALT[n] +'" border="0"></a>';
}
function randumb(range) { return (Math.floor(Math.random() * range) + 1); }