 <!--dm_title = "";dm_len = 0;dm_base = 0;function KeyIn(message) {  dm_title = message;  dm_len = 0;  Typewriter();}// Slumptalsgenerator  now = new Date();  seed = now.getTime();function rand(range) {  seed = ((seed % 4652353) * 492113) + 1;  return(seed % range);}function Typewriter() {  if ( dm_title.charAt(dm_len) == "~" ) {    dm_base = dm_len + 1;    window.status = "";  } else {    window.status = dm_title.substring(dm_base,dm_len);  }  if ( ++dm_len <= dm_title.length ) {      setTimeout('Typewriter()',rand(500)+1);  }}KeyIn("Do you want a fly for framing ?  Mail me for price, or go to for sale in the menu !~Do you want a fly for framing ?  Mail me for price, or go to for sale in the menu !!~Do you want a fly for framing ?  Mail me for price, or go to for sale in the menu !!");<!--end-->