function WriteFlashObj(link, w, h)
{
	var linkHtml = "";
	linkHtml += "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' ";
	linkHtml += "codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' ";
	linkHtml += "width='" + w + "' height='" + h + "'>" ;
	linkHtml += "<param name='movie' value='" + link + "'>";
	linkHtml += "<param name='quality' value='high'>";
	linkHtml += "<embed src='" + link + "' quality='high' ";
	linkHtml += "pluginspage='http://www.macromedia.com/go/getflashplayer' ";
	linkHtml += "type='application/x-shockwave-flash' ";
	linkHtml += "width='" + w + "' height='" + h +"'></embed>";
	linkHtml += "</object>";
	document.write(linkHtml);
}