
function writeQT(file,width,height)	{

	document.write('<object classid="clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b" width="' + width + '" height="' + height + '" codebase="http://www.apple.com/qtactivex/qtplugin.cab">');
	document.write('	<param name="src" value="' + file + '">');
	document.write('	<param name="autoplay" value="true">');
	document.write('	<param name="controller" value="true">');
	document.write('	<param name="cache" value="false">');
	document.write('	<embed src="' + file + '" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/" align="top" height="' + height + '" width="' + width + '" controller="true" cache="false" autoplay="true"></embed>');
	document.write('</object>');
}


function writeJava(file,width,height) 	{

	document.write('<applet archive="ptviewer.jar" code="ptviewer.class" width="' + width + '" height="' + height + '">');
	document.write('	<param name="file" value="' + file + '">');
	document.write('	<param name="auto" value=".05">');
	document.write('	<param name="fov" value="95">');
	document.write('	<param name="fovmax" value="95">');
	document.write('	<param name="quality" value="3">');        
	document.write('  <param name="tiltmax" value="0">');
  document.write('  <param name="tiltmin" value="0">');
  //document.write('	<param name="tiltmax" value="63">');
	//document.write('	<param name="tiltmin" value="-63">');
    	document.write('<p style="background: rgb(255, 255, 255); color: rgb(0, 0, 0);">');    
	document.write('It seems that you do not have either Quicktime or Java.<br>');
        document.write('To install Quicktime on your computer <a style="color: blue;" target="_blank" href="http://www.apple.com/quicktime/download/standalone/">click here</a>.<br>');
        document.write('To install Java on your computer <a style="color: blue;" target="_blank" href="http://www.java.com">click here</a>.');
	document.write('</p>');
	document.write('</applet>');
}

