function WriteVideo(url,width,height){
	document.write("<object id=\"mediaPlayer\" classid=\"clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6\" style=\"width:"+width+"; height:"+height+"; \" width=\""+width+"\" height=\""+height+"\">");
	document.write("<PARAM NAME=\"URL\" VALUE=\"/videos/"+url+"\">");
	document.write("<PARAM NAME=\"animationatStart\" VALUE=\"true\">");
	document.write("<PARAM NAME=\"transparentatStart\" VALUE=\"false\">");
	document.write("<param name=\"stretchToFit\" value=\"true\" />");
	document.write("<PARAM NAME=\"autoStart\" VALUE=\"true\">");
	document.write("<PARAM NAME=\"showControls\" VALUE=\"true\">");
	document.write("<PARAM NAME=\"ShowAudioControls\" VALUE=\"true\">");
	document.write("<EMBED ID=\"mediaPlayer\" NAME=\"mediaPlayer\" TYPE=\"application/x-mplayer2\" SRC=\"/videos/"+url+"\" width=\""+width+"\" height=\""+height+"\" ShowPositionControls=\"1\" ShowStatusBar=\"1\" ShowTracker=\"1\" AutoSize=\"0\" AutoRewind=\"0\" AnimationAtStart=\"0\" TransparentAtStart=\"1\" EnableContextMenu=\"0\" ClickToPlay=\"0\" DefaultFrame=\"datawindow\"></EMBED>");
	document.write("</OBJECT>");
}

function WriteFlash(url,width,height,bgcolor,vars){
	document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\" width=\""+width+"\" height=\""+height+"\" id=\"flashid\" align=\"middle\">");
	document.write("<param name=\"allowScriptAccess\" value=\"sameDomain\" />");
	document.write("<param name=\"movie\" value=\""+url+"\" />");
	document.write("<param name=\"menu\" value=\"false\" />");
	document.write("<param name=\"quality\" value=\"high\" />");
	document.write("<param name=\"wmode\" value=\"transparent\" />");
	document.write("<param name=\"bgcolor\" value=\""+bgcolor+"\" />");
	document.write("<param name=\"FlashVars\" value=\""+vars+"\" />");
	document.write("<embed src=\""+url+"\" menu=\"false\" quality=\"high\" FlashVars=\""+vars+"\" wmode=\"transparent\" bgcolor=\""+bgcolor+"\" width=\""+width+"\" height=\""+height+"\" name=\"flashid\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />");
	document.write("</object>");
}

function WriteApplet(url){
	document.write("<applet code=\"ptviewer.class\" archive=\"ptviewer.jar\" id=\"ptapplet\" name=\"ptapplet\" width=500 height=300>");
	document.write("<PARAM name=\"file\" value=\""+url+"\">");
	document.write("<PARAM name=\"auto\" value=\"0.3\">");
	document.write("<param name=cursor value=\"MOVE\">");
	document.write("<param name=pan value=0>");
	document.write("<param name=showToolbar value=\"false\">");
	document.write("<param name=imgLoadFeedback value=\"true\">");
	document.write("<NOAPPLET><br><br>JAVA is required to view these panoramas, but it does not seem to be installed on your computer.<br><br><br>");
	document.write("  <a href=\"http://www.java.com/getjava\" target=\"_blank\">DOWNLOAD JAVA HERE</a>.</NOAPPLET></APPLET>");
}
