function feedback(user, username) {
	var location = '/feedback/?To=' + user + '&ToName=' + username;
	var width = '450';
	var height = '450';
	var name = 'Feedback';

	var options = "width=" + width + ",height=" + height + ",location=no,menubar=no,status=no,toolbar=no,scrollbar=no,resizable=yes"
	var newwin = window.open(location, name, options);
	newwin.focus();

	return false;
}