  function opendetailwindow() { 
    window.open('','detailwindow','toolbar=no,scrollbars=yes,resizable=no,width=680,height=480');
  }
  
  function menu_show(what) {
    if (what == "show") {
      document.getElementById('menu_tos').style.display='block';
    } else {
      document.getElementById(what).style.display='block';
    }
  }

  function menu_hide() {
    document.getElementById('menu_tos').style.display='none';
	document.getElementById('menu_tng').style.display='none';
	document.getElementById('menu_ds9').style.display='none';
    document.getElementById('menu_voy').style.display='none';
	document.getElementById('menu_ent').style.display='none';
    document.getElementById('menu_son').style.display='none';
    document.getElementById('menu_mov').style.display='none';
  }
  
  function mailwindow(mailurl){
    winpops=window.open(mailurl,"","width=624,height=337,")
  }
  
  function helpwindow(helpurl){
    winpops=window.open(helpurl,"","width=650,height=500,scrollbars=1")
  }
  
  function openlink(url) {
    window.location = url;
  }
  
  function cap(type,catid,imgid,img,thumb) {
  
    var url_img   = "http://www.newstrekker.com/st-p/data/media/" + catid + "/" + img;
    var url_thumb = "http://www.newstrekker.com/st-p/data/thumbnails/" + catid + "/" + thumb;
    var url_site  = "http://www.newstrekker.com/st-p/details.php?image_id=" + imgid;
    
    if(type == 'img') {
      document.getElementById('cap').value = "[IMG]" + url_img + "[/IMG]";
    } else if (type == 'thumb') {
      document.getElementById('cap').value = "[URL=" + url_site + "][IMG]" + url_thumb + "[/IMG][/URL]";
    } else if (type == 'site') {
      document.getElementById('cap').value = "[URL]" + url_site + "[/URL]";
    } else {
      return false;
    }
  
    if(document.getElementById('cap').select()) {
      document.getElementById('cap').select();
      document.execCommand('copy');
    }
  
  }