/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function show_modal(urlcode, headtitle, objwidth, objheight) {
  if (objwidth == null)
    objwidth = "auto";
  if (objheight == null)
    objheight = "auto";
  $('#simplemodal-container').load(urlcode).dialog({
    title: headtitle,
    modal: true,
    resizable: false,
    width: objwidth,
    height: objheight,
    position: ['center', 'middle']
  });
}

