/*
	Resulttia Solutions

	http://www.resulttia.fi
	info@resulttia.fi
*/

var popupwindow = null;

function ikkuna(winname, filename, wintitle, winwidth, winheight)
{
  var windowX = (window.screen.width - winwidth) / 2;

  popupwindow = window.open('', winname, 'toolbar=0,menubar=0,location=0,status=0,width=' + winwidth + ',height=' + winheight + ',resizable=0,scrollbars=0,screenX=' + windowX + ',left=' + windowX + ',screenY=20,top=20');

  var content = '<html><head><title>' + wintitle + '</title></head>';
  content += '<body leftmargin="0" rightmargin="0" topmargin="0" bottommargin="0" marginwidth="0" marginheight="0" style="margin: 0px; padding: 0px">';
  content += '<img src="' + filename + '" alt="" onclick="window.close();">';
  content += '</body></html>';

  var doc = popupwindow.document;
  doc.open();
  doc.write(content);
  doc.close();

  popupwindow.focus();
}