function getQTVR(theMov){	
	theWidth = 360;
	theHeight = 240;
		
	the_html = "";
	the_html = the_html +'<DIV STYLE="POSITION: relative; WIDTH: '+(theWidth+2)+';HEIGHT: '+(theHeight+15)+'; BORDER:  1px black solid;">';
	the_html = the_html +'	<DIV STYLE="POSITION: absolute; TOP: 0; LEFT: 0; WIDTH: '+theWidth+'; BACKGROUND-COLOR: ECE1C6; TEXT-ALIGN: right"><SPAN CLASS="prettySmall">Click+Hold and move mouse to tour&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="javascript: hideImage();" STYLE="TEXT-DECORATION: none; COLOR: black">X</A>&nbsp;</SPAN></DIV>';
	the_html = the_html +'	<DIV STYLE="POSITION: absolute; TOP: 13; LEFT: 0">';
	the_html = the_html +'		<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" WIDTH="'+theWidth+'" HEIGHT="'+theHeight+'" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">';
	the_html = the_html +'		<PARAM name="SRC" VALUE="'+theMov+'">';
	the_html = the_html +'		<PARAM name="AUTOPLAY" VALUE="true">';
	the_html = the_html +'		<PARAM name="CONTROLLER" VALUE="false">';
	the_html = the_html +'		<EMBED SRC="'+theMov+'" WIDTH="'+theWidth+'" HEIGHT="'+theHeight+'" AUTOPLAY="true" CONTROLLER="false" PLUGINSPAGE="http://www.apple.com/quicktime/download/"></EMBED>';
	the_html = the_html +'		</OBJECT>';
	the_html = the_html +'	</DIV>';
	the_html = the_html +'</DIV>';
	
	return the_html;
}


