function dispflash(src, quality, width, height, loop) {
var strTmpUrl;
if (src.toLowerCase().charAt(0) == '/') {
	strTmpUrl = src
} else if (src.toLowerCase().substring(0,7) == 'http://' || src.toLowerCase().substring(0,8) == 'https://') {
	if (src.toLowerCase().substring(0,7) == 'http://') {
		strTmpUrl = window.location.protocol + '//' + src.substring(7);
	} else {
		strTmpUrl = window.location.protocol + '//' + src.substring(8);
	}
} else {
	strTmpUrl = '/' + src;
}
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="' + location.protocol + '//download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="' + width + '" height="' + height + '">');
document.write('  <param name="movie" value="' + strTmpUrl + '">');
document.write('  <param name="quality" value="' + quality + '">');
document.write('  <param name="LOOP" value="' + loop + '">');
document.write('  <embed src="' + strTmpUrl + '" loop="' + loop + '" quality="' + quality + '" pluginspage="' + location.protocol + '//www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '"></embed>');
document.write('</object>');
}