function show_status (str) {
status=str;
return true
}

function clear_status () {
status="";
return true
}

function show_mail(email) {
document.writeln("<a class='NameRef' href='mailto:"+email+"'>"+email+"</a>");
}

function show_email (email) {
document.writeln("<a href='mailto:"+email+"@"+"dkfz.de'>"+email+"@"+"dkfz.de</a>");
}

function email_address (fullname,name)
{
document.writeln("<a class='NameRef' href='mailto:"+name+"@"+"dkfz.de'>"+fullname+"</a>");
}

function email_address (fullname)
{
document.writeln("<a href='mailto:"+fullname+"'>"+fullname+"</a>");
}

function showPub(RefNum) {
var filename = "showPub.asp?RefNum=" + RefNum;
var Fenster = window.open(filename, "reference", "scrollbars=yes,width=340,height=400");
Fenster.focus();
}

function hidePub() {
return true;
}

function check (text, url) {
if (confirm(text)) {
  window.location.href = url;
  }
}