// Open a small window

function OpenNewWindow(cTitle,cSource,nWidth,nHeight,cToolbar,nBackground)
	{
	NewWindow=window.open("cTitle","NewOne","HEIGHT="+nHeight+",WIDTH="+nWidth+",scrollbars=no,resizable=no,marginwidth=0,marginheight=0,top=10,left=200");
	NewWindow.document.write ("<html><head><title>");
	NewWindow.document.write (cTitle);
	NewWindow.document.write ("</title></head><body bgcolor='#000000' text='#FFFFFF'><APPLET code='Applet3da.class' width=");
	NewWindow.document.write (nWidth +15);
	NewWindow.document.write (" height=");
	NewWindow.document.write (nHeight -35);
	NewWindow.document.write (" id='Applet1' name='Applet1' ARCHIVE='http://www.northernlightssauna.com/3danywhere.zip' MAYSCRIPT><PARAM NAME='source' VALUE=");
	NewWindow.document.write (cSource);
	NewWindow.document.write ("><PARAM NAME='Toolbar' VALUE=");
	NewWindow.document.write (cToolbar);
	NewWindow.document.write ("><PARAM NAME='bgcolor' VALUE=");
	NewWindow.document.write (nBackground);
	NewWindow.document.write ("></APPLET><br />Click and drag your mouse on the sauna</BODY></html>");
	NewWindow.document.close();
	NewWindow.focus();
	return false;
	}
