// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
function changeMenuBar() {
  if (parent.document.body.cols == '8px,*') {
    parent.document.body.cols = '210px,*';
  }
  else {
    parent.document.body.cols = '8px,*';
  }
}

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
var g_ratingurl;
function setSiteRating(rating) {
  if (rating >= 0) {
    var http = getXMLDom();
    if (http) {
      http.open("GET", g_ratingurl + rating, false);
      http.send(null);
      resp = http.responseText;
      if (resp != '') alert(resp);
    }
  }
  window.location.reload(true);
}

function reportBrokenLink(sit_id, slnk_id) {
  javascript:alert('Sorry, this feature is currently unavailable.');
}