function buildOption(strUser, strDomain, strTitle) {
	var strMail = "<option value=\"" + strUser + "@" + strDomain + "\">" + strTitle + "</option>";
	return strMail;
}

function popWin(url, name, width, height) {
	var popup;
      popup=window.open(url,'',"width="+width+",height="+height+",scrollbars=yes");
      popup.moveTo((screen.width - width)/2, (screen.height - height)/2);
      popup.focus();
}

function popPdf(page, width, height) {
	var popup;
	popup=window.open(page,"pdfpop","width="+width+",height="+height+",toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no,resizable=yes");
      popup.moveTo((screen.width - width)/2, (screen.height - height)/2);
	popup.focus();
}
