function flash( src, width, height, flashvars ){
	document.write ('<object width="'+width+'" height="'+height+'">');
	document.write ('<param name="FlashVars" value="'+flashvars+'" />');
	document.write ('<param name="allowScriptAccess" value="sameDomain" />');
	document.write ('<embed src="'+src+'" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'" flashvars="'+flashvars+'">');
	document.write ('</embed>');
	document.write ('</object>');
}

