function contactInfo(personId)
{
	var url = "ContactInfo.aspx?PersonId=" + personId;
	var style = "width=260, height=350,resizable=yes,toolbar=no,scrollbars";
	var w = window.open(url,"contact",style);
	w.focus();
	return false;
}
