function embedFlashMovie(url, w, h)
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="' + w + '" height="' + h + '"><param name="movie" value="' + url + '"><param name="quality" value="High"><param name="wmode" value="transparent"><embed src="' + url + '" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="obj1" width="' + w + '" height="' + h + '" quality="High" wmode="transparent"></object>');
}

function embedPDFDocument(url, w, h)
{
	document.write('<embed width="' + w + '" height="' + h + '" src="' + url + '">');
}

function embedWMV(url, w, h, autoStart, showControls)
{
	var h2;
	
	if (showControls == 'True')
	{
		h2 = parseInt(h) + 46;
	}
	else
	{
		h2 = h;
	}
	
	document.write('<object id="MediaPlayer" width="' + w + '" height="' + h2 + '" classid="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95" standby="Loading Windows Media Player components..." type="application/x-oleobject" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112"><param name="filename" value="' + url + '"><param name="Showcontrols" value="' + showControls + '"><param name="autoStart" value="' + autoStart + '"><embed type="application/x-mplayer2" src="' + url + '" name="MediaPlayer" width="' + w + '" height="' + h + '"></embed></object>');
}