function show_flash(src, id_name, width, height) 
{ 
	document.writeln('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" name="'+id_name+'" width="'+width+'" height="'+height+'" id="'+id_name+'">');
	document.writeln('<param name="allowScriptAccess" value="always">');
	document.writeln('<param name="movie" value="'+src+window.location.search+'">');
	document.writeln('<param name=quality value=high>');
	document.writeln('<embed src="'+src+window.location.search+'" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" allowScriptAccess="always" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"></embed>');
	document.writeln('</object>');
}