
// shows flash file
function showFlashHeader(file, width, height){
	document.write('<object type="application/x-shockwave-flash" width="' + width + '" height="' + height + '" id="flash" data="' + file + '">');
	document.write('<param  name="movie" value="' + file + '" />');
	document.write('</object>');
}
