//pop-up for webmail
function Webmail(type, id, subject, showOptions) {
	var winl = (screen.width - 600) / 2;
	var wint = (screen.height - 500) / 2;
	winprops = 'height=520,width=500,top='+wint+',left='+winl+',scrollbars=no,resizable=yes'
	page = '/webmail.asp?type='+type+'&id='+id+'&subject='+subject+'&showoptions='+showOptions
	win = window.open(page, 'mail', winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}