// JavaScript Document

<!--
function ewrite(a,b,c,d){
var mail;
var link;
mail=a+"@"+b+"."+c;
if(d == 0){
document.write(mail);
}
else {
link='<a href="mailto:'+mail+'">'+mail+'</a>';
document.write(link);
}
}
function telwrite(a,b,c){
var phone;
var ext;
ext=a+" ";
phone=b+" "+c;
if(a == 0) {
document.write(phone);
}
else {
document.write(ext); document.write(phone);
}
}
// -->