//<![CDATA[    

function openimage(image, title, width, height) {
  var params = 'scrollbars=yes,resizable=yes,dependent=yes';
  if (!width) width = 100;
  if (!height) height = 100;
  params = 'width='+width+',height='+height+','+params;
  var win = window.open('image.html?image_='+image+'&amp;title_='+title, 'image', params);
  win.focus();
  return false;
}

function openvideo(video, image, title, width, height) {
  var params = 'scrollbars=yes,resizable=yes,dependent=yes';
  if (!width) width = 800;
  if (!height) height = 600;
  params = 'width='+width+',height='+height+','+params;
  var win = window.open('video.html?video_='+video+'&amp;image_='+image+'&amp;title_='+title, 'image', params);
  win.focus();
  return false;
}

//]]>
