var popjob = new Popdiv("jobcontent");

function initPage() {
  new AjaxTiny("TopContent", {width:"600px",height:"300px",toolbarLocation:'top',toolbarConfig:'extended',css:'/css/base.css'});
  setupTinyControls();
}

function showJob(propId) {
  Jobs.GetJob(propId, showJob2);
}

function showJob2(response) {
  $('jobcontent_inner').innerHTML = response.value;
  popjob.show();
}

function closeJob() {
  popjob.hide();
}

