dat = new Date();
y=dat.getYear()-2000;
m=dat.getMonth()+1;
d=dat.getDate();
hours=dat.getHours();
minutes=dat.getMinutes();
seconds=dat.getSeconds();

function postit(user,domain,txt,tip) {
// user - before @
// domain - after @
// txt - display link text
// tip - mouse cursor tip displayed
if (postit.arguments.length<3) b = user+"@"+domain;
else b = txt;
if (postit.arguments.length<4) mtip = "Send an E-mail to "+b;
else mtip = tip;
titl = document.title;
dat = new Date();
y=dat.getYear()-2000;
m=dat.getMonth()+1;
d=dat.getDate();
hours=dat.getHours();
minutes=dat.getMinutes();
seconds=dat.getSeconds();
if(m<=9) m="0"+m;
if(d<=9) d="0"+d;
if (minutes<=9) minutes="0"+minutes;
if (seconds<=9) seconds="0"+seconds;
a1 = '<a class="post" href="mai'+'lto:'+user+'@'+domain+'?subject=Web-0'+y+m+d+' '+hours+':'+minutes+':'+seconds+'-'+titl+'" title="'+mtip+'">';
document.write(a1+b+'</a>');  
}                    
//
function bookmark(url,title){
  if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
  window.external.AddFavorite(url,title);
  } else if (navigator.appName == "Netscape") {
    window.sidebar.addPanel(title,url,"");
  } else {
    alert("Press CTRL-D (Netscape) or CTRL-T (Opera) to bookmark");
  }
}