function popUp(url,name,w,h) {
	winprops = 'height='+h+',width='+w+',top=30,left=10,location=no,menubar=no,status=no,scrollbars=yes';
	win = window.open(url, name, winprops);
	if (window.focus) { win.window.focus(); }
}

function hideEmail(text,user,host) {
	document.write("<a href=" + "mail" + "to:" + user + "@" + host + ">" + text + "</a>");
}