Monotone-Parent: 992caf023ddb85d68d02283b857594a23b4582e7

Monotone-Revision: c8ffc75afc6375fd954ab207e9dbdef8b4793876

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-08-21T16:00:25
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-08-21 16:00:25 +00:00
parent 46e5d22fd4
commit 8bf367ea4c
3 changed files with 26 additions and 61 deletions

View File

@@ -212,8 +212,20 @@ function openUserFolderSelector(callback, type) {
w.focus();
}
function openMailComposeWindow(url) {
var w = window.open(url, null,
function openContactWindow(url, wId) {
if (!wId)
wId = "" + (new Date().getTime());
var w = window.open(url, wId,
"width=450,height=600,resizable=0");
w.focus();
return w;
}
function openMailComposeWindow(url, wId) {
if (!wId)
wId = "" + (new Date().getTime());
var w = window.open(url, wId,
"width=680,height=520,resizable=1,scrollbars=1,toolbar=0,"
+ "location=0,directories=0,status=0,menubar=0"
+ ",copyhistory=0");