//<![CDATA[

function openwindow(url, title, name, width, height) {
  var params = 'menubar=yes,statusbar=yes,scrollbars=yes,resizable=yes,dependent=yes,title='+title;
  if (!name) name = 'window';
  if (!width) width = 640;
  if (!height) height = 480;
  params = 'width='+width+',height='+height+','+params;
  var win = window.open(url, name, params);
  win.focus();
  return false;
}

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 openprofile(url, query, title, id, width, height) {
  var params = 'scrollbars=yes,resizable=yes,dependent=yes';
  if (!width) width = 820;
  if (!height) height = 800;
  params = 'width='+width+',height='+height+','+params;
  var win = window.open(url+'?q='+query+'&amp;title_='+title, 'profile'+id, params);
  win.focus();
  return false;
}

//]]>

