function OpenPopup(URL, width, height)
{
    window.self.name = "main";
    var now = new Date();
    var remote = window.open(URL, "popup" + now.getTime(), "width=" + width + ",height=" + height + ",toolbar=0,location=0,directories=0,resizable=1,status=1,menubar=0,scrollbars=1");
}
function confirm_del(msg)
{
	return confirm(msg);
}
// JavaScript Document

function writeit(second, first, className, extra, inner) {
    if (inner == '')
    {
        inner = first + '@' + second;
    }
    document.write ('<a href="mailto:' + first + '@' + second + '"');
    if (extra != "")
    {
        document.write(extra);
    }
    if (className != "")
    {
        document.write('class="' + className + '"');
    }
    document.write('>' + inner + '</a>');
}

