// JavaScript Document
function placeMovie(){
	var tempString = document.URL;
	var movieSrc;
	var myAutoplay;
	if(tempString.indexOf("video=")!= -1){
		var tmpIndex = tempString.indexOf("video=")+6
		movieSrc = "videos/video"+tempString.substring(tmpIndex,tmpIndex+1)+".mov";
		myAutoplay = true;
	}else{
		movieSrc = "videos/video0.mov";
		myAutoplay = true;
	}
	InsertSampleMovie(movieSrc,myAutoplay);
}

function InsertSampleMovie(myMovieSrc,autoplay){
	
	document.write("<object width='358' height='256' classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' codebase='http://www.apple.com/qtactivex/qtplugin.cab'>\n");
	document.write("<param name='src' value='"+myMovieSrc+"' />\n");
	document.write("<param name='autoplay' value='"+autoplay+"' />\n");
	document.write("<param name='controller' value='"+autoplay+"' />\n");
	document.write("<embed src='"+myMovieSrc+"' width='358' height='256' autoplay='"+autoplay+"' controller='"+autoplay+"' pluginspage='http://www.apple.com/quicktime/download/'></embed>\n");
	document.write("</object>\n");
}