﻿// JScript File
function returnFlashContent(IMG_ASP_LINK,imageDisplayWidth,imageDisplayHeight,videoFile)
{
	return "<object type='application/x-shockwave-flash' classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,22,0' width='492' height='396' id='FLVPlayer' style'z-index:0px'>" +
				"<param name='movie' value='" + IMG_ASP_LINK + "FLVPlayer.swf?movie_x=" + imageDisplayWidth + "&movie_y=" + imageDisplayHeight + "&file=" + videoFile + "' />" +
				"<param name='wmode' value='transparent' />" +
				"<embed src='" + IMG_ASP_LINK + "FLVPlayer.swf?movie_x=" + imageDisplayWidth + "&movie_y=" + imageDisplayHeight + "&file=" + videoFile + "' quality='high' scale='noscale' width='492' height='396' name='FLVPlayer' wmode='transparent' salign='LT' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />" +
			"</object>";
}

function returnFlashDefault(flashUrl,fWidth,fHeight)
{
	return "<object type='application/x-shockwave-flash' classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='" + fWidth + "' height='" + fHeight + "' id='defaultPlayer' style'z-index:0px;padding-left:0px;padding-right:0px;padding-top:0px;padding-bottom:0px;'>" +
				"<param name='movie' value='" + flashUrl + "' />" +
				"<param name='wmode' value='transparent' />" +
				"<embed src='" + flashUrl + "' quality='high' scale='noscale' width='" + fWidth + "' height='" + fHeight + "' name='defaultPlayer' wmode='transparent' salign='LT' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' style'z-index:0px;padding-left:0px;padding-right:0px;padding-top:0px;padding-bottom:0px;' />" +
			"</object>";

}

function drawFlashContentIntoElement(elementToDrawIn,contentTodraw)
{
	elementToDrawIn.innerHTML = contentTodraw;
}


