// JavaScript Document
function swap(num) {
	var j = document.getElementById("japplet");
	var p = document.getElementById("pagetitle");
	j.innerHTML = tour[num];
	p.innerHTML = ptitle[num];
}
	
var tour = new Array(4);
var ptitle = new Array(4);

var str1 = '<applet code="IpixViewer.class" name="IpixViewer" width="400" height="300" align="middle" archive="IpixViewer.jar" class="vt_border"><param name="url" value="';
var str2 = '"><param name="toolbar" value="on"><param name="splash" value="clientwave_logo.gif"><param name="splashbg" value="FFFFFF"><param name="initfov" value="120"><param name="spinspeed" value="6"><param name="spinstyle" value="flat"><param name="helpurl" value="http://www.reflectionshair.net/ref_022vthelp.html"><param name="helpframe" value="_blank">                     <img src="sorry-no-java.jpg" width="320" height="240" align="middle"></applet>';

tour[0] = str1 + 'Reception_ipix_high.ipx' + str2;
tour[1] = str1 + 'Lounge2_ipix_high.ipx' + str2;
tour[2] = str1 + 'Dental_ipix_high.ipx' + str2;
tour[3] = str1 + 'TreatmentRm1_ipix_high.ipx' + str2;
tour[4] = str1 + 'Bathroom_ipix_high.ipx' + str2;

ptitle[0] = 'The Reception Area';
ptitle[1] = 'The Lounge Area';
ptitle[2] = 'The Dental Surgery';
ptitle[3] = 'The Treatment Room';
ptitle[4] = 'The Rest Area';