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