View Single Post
  #3 (permalink)  
Old 10-11-2007, 10:58 AM
Cristian's Avatar
Cristian Cristian is offline
Administrator
 
Join Date: Feb 2007
Location: Sibiu, Romania
Posts: 99
Default

Hi,

I am actually using something more easier: a Javascript function put for onClick:

function show_e(domain, user)
{
newWindow = window.open('mail' + 'to:' + user + "@" + domain , '', 'height=600,width=600,scrollbars=yes,resizable=yes ');
if (document.images) newWindow.focus();
}

There is however a small problem when clicking on link. On some browsers is opened also a new browser window, not just email client...
Reply With Quote