//<![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 openprint(type, key) {
  var params = 'width=570,height=590,scrollbars=yes,resizable=yes,dependent=yes,menubar=yes,status=yes';
  var win = window.open('print.html?type_='+type+'&amp;key_='+key, 'print', params);
  win.focus();
  return false;
}

//]]>
