function preview(file, width, height)
{
    var f = file;
    var w = width + 10;
    var h = height + 10;
    var l = (screen.availWidth - width) / 2;
    var t = (screen.availHeight - 50 - height) / 2;
    prev  = window.open('', 'foto_bombay', "width="+w+", height="+h+", left="+l+", top="+t+", scrollbars=no, toolbars=no, status=no, resizable=no");
    prev.document.open();
    prev.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
    prev.document.write('<html><title>'+f+'</title><body style="background-color: #a0a17f; margin: 5px; padding: 0px;">');
    prev.document.write('<a href="javascript: {}" onclick="javascript: self.close();"><img src="'+f+'" width="'+width+'" height="'+height+'" border="0" alt="'+f+'" /></a>');
    prev.document.write('</body></html>');
    prev.document.close();
    prev.focus();
}

function email(name, domain, tld)
{
    var link = name + '@' + domain + '.' + tld;
    document.write(link);
}
