// killing right-click
///////////////////////
document.oncontextmenu = function() { return false; }


// thickbox related stuff
////////////////////////////
function showDistrict(dis) {
  var z = $('dlink'+dis).getAttribute('href');
  //window.open(z, '', 'width=600,height=400,menubar=0,toolbar=0,scrollbars=1');
  $('infoData').src = z;
  Element.hide('tblForm');
  new Effect.Appear('infoContainer');
  //Element.show();
}

function resizeMe() {
  try{
    $('infoData').style.height = eval('infoData.document.body.scrollHeight')+30+'px'; 
  } catch(e) {}
}

function infoClose() {
  Element.hide('infoContainer');
  $('infoData').src = '';
  Element.show('tblForm');
}


