function show_media(id,width,height) {
  if(width == 0){
    width = 250;
  }
  if(height == 0){
    height = 120;
  }
  var wwidth = parseInt(width) + 100;
  var wheight = parseInt(height) + 172;
  
  window.open("/cms/apps/media_editor_plus/media_gallery_pop.php?id=" + id, "myMediaWindow", "height=" + wheight + ",width=" + wwidth + ",resizable=no,scrollbars=yes,status=no"); 
}

function show_website(url) {
 window.open(url);
}

function show_mediaindex(catid) {
 window.open('/cms/apps/media_editor_plus/media_gallery_index.php?catid=' + catid, '', 'menubar=no,toolbar=yes,statusbar=no,resizable=no,scrollbars=yes,width=650,height=600');
 }
