function getSwfHtml(strSource, nWidth, nHeight) {
	var strHtml = '';
	strHtml = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="' + nWidth + '" height="' + nHeight + '" id="artcollection">';
	strHtml += '<param name="movie" value="'+strSource+'" />';
	strHtml += '<param name="quality" value="high" /><param name="LOOP" value="true" />';
	strHtml += '<embed name="artcollection" src="'+strSource+'" width="' + nWidth + '" height="' + nHeight + '" loop="true" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" swLiveConnect="true"></embed>';
	strHtml += '</object>';
	objTd.innerHTML = strHtml;
}

function getSwfHtml2(strSource, nWidth, nHeight) {
	var strHtml = '';
	strHtml = '<div style="padding-top:2px;"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="' + nWidth + '" height="' + nHeight + '" id="artcollection">';
	strHtml += '<param name="movie" value="'+strSource+'" />';
	strHtml += '<param name="quality" value="high" /><param name="LOOP" value="true" />';
	strHtml += '<embed name="artcollection" src="'+strSource+'" width="' + nWidth + '" height="' + nHeight + '" loop="true" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" swLiveConnect="true"></embed>';
	strHtml += '</object></div>';
	objDivPreview.innerHTML = strHtml;
}
