function videoFileInfo(objectId, width, height) {
	var flashObj = document[objectId];
	flashObj.width = width;
	flashObj.height = height;
}

function loadNewVideo(videoId) {
	location.href = "media_video_library.asp?i=" + videoId;
}

function videoPlayer(objectId, imageURL, videoLoURL, videoHiURL, videoBW, width, height, autoLoad, autoZoom, autoZoomSource, autoPlay, suggestions) {
	var flashVars = "objectId=" + objectId + "&i=" + imageURL + "&l=" + videoLoURL + "&h=" + videoHiURL + "&b=" + videoBW + "&autoLoad=" + autoLoad + "&autoZoom=" + autoZoom + "&autoZoomSource=" + autoZoomSource + "&autoPlay=" + autoPlay + "&s=" + suggestions;
	
	document.writeln('<OBJECT');
	//document.writeln('	style="border:1px solid #D2001D;"');
	document.writeln('	classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');
	document.writeln('	codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"');
	document.writeln('	width="' + width + '"');
	document.writeln('	height="' + height + '"');
	document.writeln('	id="' + objectId +'"');
	document.writeln('	align="middle"');
	document.writeln('>');
	document.writeln('	<PARAM name="allowScriptAccess" value="sameDomain" />');
	document.writeln('	<PARAM name="allowFullScreen" value="true" />');
	document.writeln('	<PARAM name="movie" value="video_player_as3.swf" />');
	document.writeln('	<PARAM name="quality" value="high" />');
	document.writeln('	<PARAM name="bgcolor" value="#ffffff" />');
	document.writeln('	<PARAM name="FlashVars" value="' + flashVars + '" />');
	document.writeln('	<PARAM name="wmode" value="opaque" />');
	document.writeln('	<EMBED');
	document.writeln('		src="video_player_as3.swf"');
	document.writeln('		QUALITY="high"');
	document.writeln('		BGCOLOR="#ffffff"');
	document.writeln('		width="' + width + '"');
	document.writeln('		height="' + height + '"');
	document.writeln('		NAME="' + objectId +'"');
	document.writeln('		align="middle"');
	document.writeln('		allowScriptAccess="sameDomain"');
	document.writeln('		allowFullScreen="true"');
	document.writeln('		TYPE="application/x-shockwave-flash"');
	document.writeln('		PLUGINSPAGE="http://www.adobe.com/go/getflashplayer"');
	document.writeln('		FlashVars="' + flashVars + '"');
	document.writeln('		wmode="opaque"');
	document.writeln('	/>');
	document.writeln('</OBJECT>');
}

