function pop_referee(name, home, work, cell, email1, email2) {
		new_window = window.open("", "pop_ref", "width=250,height=250,toolbar=no,location=,directories=no,status=no,menubar=no,copyhistory=no,left=250,top=100");
		new_window.document.open();
		
		new_window.document.write("<html><title>" + name + "</title><body bgcolor=ffffff>");
		new_window.document.write("<table border=0><tr><td>Name:</td><td>"+name + "</td></tr>");
		new_window.document.write("<tr><td>Home Phone:</td><td>" + home + "</td></tr>");
		new_window.document.write("<tr><td>Work Phone:</td><td>" + work + "</td></tr>");
		new_window.document.write("<tr><td>Cell/Fax:</td><td>" + cell + "</td></tr>");
		new_window.document.write("<tr><td>Email 1:</td><td><a href=\"mailto:" + email1 + "\">"+email1+"</a></td></tr>");
		if (email2 != "")
				new_window.document.write("<tr><td>Email 2:</td><td><a href=\"mailto:" + email2 + "\">"+ email2 + "</a></td></tr>");
	 
		new_window.document.close();
		new_window.focus();
}
