function embedMovie(strSrc,iWidth,iHeight) {
	if (iWidth == '') iWidth = 350;
	if (iHeight == '') iHeight = 350;
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="'+iWidth+'" height="'+iHeight+'" align="center">');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="movie" value="/images/'+strSrc+'" />');
	document.write('<param name="quality" value="high" />');
	//document.write('<param name="bgcolor" value="#000000" />');
	document.write('<embed src="images/'+strSrc+'" quality="high" width="'+iWidth+'" height="'+iHeight+'" name="mymovie" align="center" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" />');
	document.write('</object>');
}