function TS_OpenWindow(theURL,pic_width,pic_height) {
  features = "resizable=yes,";
  if (pic_width > (screen.width - 32)) {
  	pic_width = screen.width - 32;
  	pic_height = parseInt(pic_height) + 16;
  	features = "scrollbars=yes,";
  }
  if (pic_height > (screen.height - 32)) {
  	pic_height = screen.height - 32;
  	pic_width = parseInt(pic_width) + 16;
  	features = "scrollbars=yes,";
  }
  x = (screen.width - pic_width) / 2;
  y = (screen.height - pic_height) / 2;
  features += "width=" + pic_width + ",height=" + pic_height + ",left=" + x + ",top=" + y;
  var pic_win=window.open("","",features);
  pic_win.document.write('<BODY bgcolor="#000000" text="#ffffff" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
  pic_win.document.write('<a href="javascript:window.close();">');
  pic_win.document.write("<img src=\"" + theURL + "\" border=0>");
  pic_win.document.write('</a></body>');
  return false;
}
