	function embedVirtualTour(VTNum,SpinNum,Thumbnails,VTSize) {
		var width, height;
		if(VTSize=="tiny"){
			width = 350;
			height = 300;
		}else if(VTSize=="mls"){
			width = 535;
			height = 350;
		}else if(VTSize=="large"){
			width = 722;
			height = 505;
		}else if(VTSize=="x-large"){
			width = 1000;
			height = 600;
		}else{
			VTSize = "mini";
			width = 500;
			height = 350;
		}
		var code = "<iframe name=\"VirtualTourIFrame\" src=\"http://www.sharpvt.com/scripts/vt.asp?vtsize="+VTSize+"&vt="+VTNum;
		if(SpinNum>0) code += "&spin="+SpinNum;
		if(Thumbnails==true) code += "&a=full";
		code += "\" frameborder=\"0\" style=\"width:"+width+"px;height:";
		if(Thumbnails==true){
			code += (height+93);
		}else{
			code += height;
		}
		code += "px;overflow:hidden;\" scrolling=\"no\"></iframe>";
		document.write(code);
	}
