function loadApplet(motorhome, view) {
var appletCode = "";
appletCode = appletCode + "<applet code='hm35.class' codebase='http://virtual.canadream.com/virtual_tours/' width='265' height='186'>";
switch (view) {
 		case "day":
 		appletCode = appletCode + "<param name='mvrfile' value="+motorhome+"1.mvr>";
 		break;
		case "night":
 		appletCode = appletCode + "<param name='mvrfile' value="+motorhome+"2.mvr>";
 		break;
		case "ext":
 		appletCode = appletCode + "<param name='mvrfile' value="+motorhome+".mvr>";
 		break;
}
appletCode = appletCode + "Virtual tour requires JAVA support<virtual tours and photos by VRPhotos.com.>";
appletCode = appletCode + "</applet>";
document.getElementById("applet").innerHTML = appletCode;
 }