function show_in_new_window(html_file, wndName, n_width, n_height)
{
	var winOpts;

	winOpts="toolbar=no" +
			", copyhistory=no" +
			", location=no" +
			", directories=no" +
			", menubar=no" +
			", scrollbars=yes" +
			", status=no" +
			", resizable=yes" +
			", height=" + n_height +
			", width=" + n_width +
			", left=650" +
			", top=20";

    myWin=window.open(html_file, wndName, winOpts);
    myWin.focus();
}

function show_bigger_images(html_file, wndName, n_width, n_height)
{
	var winOpts;

	winOpts="toolbar=no" +
			", copyhistory=no" +
			", location=no" +
			", directories=no" +
			", menubar=no" +
			", scrollbars=yes" +
			", status=no" +
			", resizable=yes" +
			", height=" + n_height +
			", width=" + n_width +
			", left=650" +
			", top=20";

    myWin=window.open(html_file, wndName, winOpts);
   // avaa tiedosto
    myWin.document.open();
   // luo tiedosto
   myWin.document.write("");
   myWin.document.write("<html><head><title>Sulje ikkuna klikkamalla kuvaa</title></head><body bgcolor=ffffff marginheight=0 marginwidth=0 topmargin=0 leftmargin=0><A HREF='javascript:close()'><IMG src=" + html_file + " border=0></A></body></html>")
    // myWin.focus();
}