<!--
function outlink(dir,page,text,clas,target) {
show = "<a href='http://"
show += dir
if(page.substr(0,1)!="/")show += "/"
show += page
show += "'"
if (clas) {show += " class='" + clas + "'"}
if (target) {show += " target='" + target + "'"}
show += ">"
show += text
show += "</a>"
document.write(show);
}

function outmail(name,host,text,clas,target) {
show = "<a href='mailto:"
show += name
show += "@"
show += host
show += "'"
if (clas) {show += " class='" + clas + "'"}
if (target) {show += " target='" + target + "'"}
show += ">"
show += text
show += "</a>"
document.write(show);
}
//-->
