I\'d like to invoke a mailto link from JavaScript - that is I\'d like a method that allows me to open the email client on the users PC, exactly as if they had clicked on a n
You can avoid the blank page issue discussed above by instead using .click() with a link on the page:
document.getElementById('mymailto').click(); ...