function confirmDel (msg) {
    return confirm(msg);
}

function myVoid () {
}

function mailtoLink( username, hostname )
{
var linktext = username + "@" + hostname;
document.write("<a href=" + "mail" + "to:" + username + "@" + hostname + ">" + linktext + "</a>")
}


/*
jquery effects
$(document).ready(function(){
    if ("" != $("div#flash").html())
    {
        $("div#flash").fadeIn('slow');
        setTimeout(clearFlashDiv, 5000);
    }


}); // document ready
*/

