function haeSivu() {
      var url = document.valikko1.graafivalikko.options[document.valikko1.graafivalikko.selectedIndex].value;
      if (document.valikko1.graafivalikko.selectedIndex != 0)
	      location = url;
}

function naytaGraafi(nimi, imgURL) {
	graafiIkkuna = window.open("","myWin","width=450,height=380,scrollbar=no,location=no,menubar=no,resizable=no");
	graafiIkkuna.document.open();
	graafiIkkuna.document.write("<html><head><title>"+nimi+"</title></head>");
	graafiIkkuna.document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"../style.css\">");
	graafiIkkuna.document.write("<style type=\"text/css\">@import \"../formspec.css\"; </style>");
	graafiIkkuna.document.write("<body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0>");
	graafiIkkuna.document.write("<table width=\"100%\" cellpadding=0 cellspacing=0 border=0 height=\"100%\"><tr><td>");
	graafiIkkuna.document.write("<img src=\""+imgURL+"\" border=0 alt=\"\"><br><br></td></tr><tr><td valign=\"bottom\" align=\"right\">");
	graafiIkkuna.document.write("<form><input type=\"button\" class=\"input\" onClick=\"window.close();\" value=\"Sulje\">");
	graafiIkkuna.document.write("</td></tr></table></form></body></html>");
	graafiIkkuna.document.close();
}

