// Open a window for 3D image
var threeDwindow;
function CallWindow(aTitle,aSource,aWidth,aHeight,aToolbar,aBackground)
	{	threeDwindow=window.open("","NewOne","HEIGHT="+aHeight+",WIDTH="+aWidth+",scrollbars=no,resizable=no,marginwidth=0,marginheight=0,top=10,left=200");
	threeDwindow.document.write ("<html><head><title>");
	threeDwindow.document.write (aTitle);
	threeDwindow.document.write ("</title></head><body bgcolor='#000000' text='#FFFFFF'><APPLET code='Applet3da.class' width=");
	threeDwindow.document.write (aWidth +15);
	threeDwindow.document.write (" height=");
	threeDwindow.document.write (aHeight -35);
	threeDwindow.document.write (" id='Applet1' name='Applet1' ARCHIVE='http://www.northernlightssauna.com/3danywhere_pcr.zip' MAYSCRIPT><PARAM NAME='source' VALUE=");
	threeDwindow.document.write (aSource);
	threeDwindow.document.write ("><PARAM NAME='Toolbar' VALUE=");
	threeDwindow.document.write (aToolbar);
	threeDwindow.document.write ("><PARAM NAME='bgcolor' VALUE=");
	threeDwindow.document.write (aBackground);
	threeDwindow.document.write ("></APPLET><br />Click and drag your mouse on the sauna</body></html>");
	threeDwindow.document.close();
	threeDwindow.focus();
	return true;
	}
// Open a window for images
var NewWindow;
function PopWindow(bTitle,bPicture,bWidth,bHeight,bMessage,bBackground)
	{	NewWindow=window.open("","NewOne","HEIGHT="+bHeight+",WIDTH="+bWidth+",scrollbars=no,resizable=no,top=10,left=200");
	NewWindow.document.write ("<html><head><title>");
	NewWindow.document.write (bTitle);
	NewWindow.document.write ("</title></head><body bgcolor=");
	NewWindow.document.write (bBackground);
	NewWindow.document.write ("><center>");
	NewWindow.document.write (bMessage);
	NewWindow.document.write ("<br /><IMG SRC=");
	NewWindow.document.write (bPicture);
	NewWindow.document.write ("><form><INPUT TYPE='button' VALUE='Close This Window' onClick='self.close()')>");
	NewWindow.document.write ("</form></center></body></html>");
	NewWindow.document.close();
	NewWindow.focus();
	return true;
	}
