function print_flash(url,width,height,classid){
	codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0';
	pluginspace='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash';

	document.write('<object classid="clsid:'+classid+'" codebase="'+codebase+'" width="'+width+'" height="'+height+'">');
	document.write('<param name=movie value="'+url+'">');
	document.write('<param name=quality value=high>');
    document.write('<embed src="'+url+'" quality=high pluginspage="'+pluginspace+'" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'">');
	document.write('</embed></object>');
}
