Sure can! If you open up /javascript/formUtil.js and find this function:
function emailToFriend(ArticleLink)
{
var t = (screen.availHeight/2) - (485/2);
var l = (screen.availWidth/2) - (605/2);
var emailWin = window.open(ArticleLink+"/articleemail",
"emailWin",
"scrollbars=yes,toolbar=1,statusbar=0,width=605,height=485,top="+t+",left="+l);
}
t is the height and l is the width.
You can specify these yourself like:
var t = 450;
var l = 750;
So you would end up with:
function emailToFriend(ArticleLink)
{
var t = 450;
var l = 750;
var emailWin =
window.open(ArticleLink+"/articleemail", "emailWin",
"scrollbars=yes,toolbar=1,statusbar=0,width=605,height=485,top="+t+",left="+l);
}
If you get stuck, send in a trouble ticket via the client area.

The article has been updated successfully.