<!--
function new_win(theURL,features) 
{ 
  	newwin=window.open("","win",features);
	with (newwin.document)
		{
		open();
		write("<html><head><title>");
		write("Rhino Wood & Plastic Processing Sweden AB");
		write("</title></head><body marginheight=0 marginwidth=0 LEFTMARGIN=0 TOPMARGIN=0>");
		write("<img src=");
		write(theURL);
		write(" border=0></body></html>");
		close();
		}
}
//-->
