function printFlash(dn, filename, w, h,param, embed, strhttp ) {
	document.getElementById(dn).innerHTML =	"<object title='' classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' "+ 
		" width='"+ w +"' height='"+ h +"'>"+
	" <param name='movie' value='" + filename + "'>"+
	" <param name='quality' value='high'>"+ param +
	" <param name='wmode' value='transparent'" +
    " <embed src='" + filename + "' wmode='transparent'  quality='high' "+
		" type='application/x-shockwave-flash' "+
		" width='"+ w +"' height='"+ h +"' "+ embed +" ></embed>"+
	" </object>";
}

