
			var videoWidth = "400"; // Video width
			var videoHeight = "300"; // Video height
		
			var flashvars = {};
				flashvars.flvFile = "newwalkon.flv"; // File name of FLV, should reside in same folder
				flashvars.buffer = 5; // Seconds of the video that should load before playing (Might wish to increase for large files)
				flashvars.dropshadow = 1; // 1/0 - Should player have a drop shadow
				flashvars.fadein = 1; // 1/0 - Should player fade in
				flashvars.fadeout = 1; // 1/0 - Should player fade out
				flashvars.videoLink = 1; // 1/0 - Should the video have a link to another page
				flashvars.videoURL = "www.virtualwebvideo.com"; // URL if video should be linked, without http://
				flashvars.controlsLocation = "center"; // "left", "center", "right" - Location of controls
				flashvars.videoWidth = videoWidth; // Don't change 
				flashvars.videoHeight = videoHeight; // Don't change 
			var params = {};
				params.wmode = "transparent"; // Don't change 
				params.scale = "noscale"; // Don't change 
			var attributes = {};
				attributes.name = "walkonvideo"; // Don't change 
				attributes.id = "walkonvideo"; // Don't change 
			swfobject.embedSWF("walkonvideo_template_2.swf", "flashcontent", videoWidth, videoHeight, "8.0.0", false, flashvars, params, attributes); // swf filename, name of div to place flash, video width, video heigth, video minimum version, leave the rest of the variables
			
			// Will start the video and resize the window to allow for viewing
			function playMovie() { 
				document.getElementById("walkonvideo").style.width = videoWidth+"px";
				document.getElementById("flashbox").style.width = videoWidth+"px";
				document.getElementById("walkonvideo").style.height = videoHeight+"px";
				document.getElementById("flashbox").style.height = videoHeight+"px";
				getFlashMovie("walkonvideo").JStoASviaExternalInterface("startvideo");
			}
			
			// Provides the proper address for the movie depending on browser
			function getFlashMovie(movieName) {
			  	var isIE = navigator.appName.indexOf("Microsoft") != -1;
			  	return (isIE) ? window[movieName] : document[movieName];
			}
			
			// Closes window
			function closeFlashWindow() {
				document.getElementById("walkonvideo").style.width = "1px";
				document.getElementById("flashbox").style.width = "1px";
				document.getElementById("walkonvideo").style.height = "1px";
				document.getElementById("flashbox").style.height = "1px";
			}

			window.onload = new Function("setTimeout('playMovie()',3000)");

	