//$Id: user_profile.js 996 2006-11-16 18:45:01Z star000s $
function show_saved(user_id) {
   url = 'http://' + location.hostname + '/user_profile.php?d=saved_stuff&user_id=' + user_id;
   loadDoc(url, "user_content");
}
function show_images(user_id) {
   url = 'http://' + location.hostname + '/user_profile.php?d=images&user_id=' + user_id;
   loadDoc(url, "user_content");
}
function show_contrib(user_id) {
   url = 'http://' + location.hostname + '/user_profile.php?d=show_contrib&user_id=' + user_id;
   loadDoc(url, "user_content");
}
function show_users(user_id) {
   url = 'http://' + location.hostname + '/user_profile.php?d=user_users&user_id=' + user_id;
   loadDoc(url, "user_content");
}
function changePSSort(user_id, sort_by) {
   url = "http://" + location.hostname + "/user_profile.php?d=resort&user_id=" + user_id + "&sbf=" + sort_by;
   loadDoc(url, "profile_saved_venues");
}

