function openWin(theURL,winName) {
var width = 525;
var height = (screen.availHeight * .85);
var left = (screen.availWidth - 600);
var top = (screen.availHeight * .05);

window.open(theURL,winName,'height=' + height + ',width=' + width + ',status=no,scrollbars=yes,resizable=yes,screenx=' + left + ',left=' + left + ',screeny=' + top + ',top=' + top + '');
mail.focus();
}

