function loadflash(file, width, height, transparent) {
	document.write('<object type="application/x-shockwave-flash" data="'+file+'" width="'+width+'" height="'+height+'">');
	document.write('<param name="movie" value="'+file+'" />');
	if (transparent) {
		document.write('<param name="wmode" value="transparent" />');
	}
	document.write('<param name="quality" value="high" />');
	document.write('<param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" />');
	document.write('</object>');
}