// out player url var out_path = "http://j-pres.com/player/"; var movie_path = "http://j-pres.com/movies/"; document.write(''); var player_width = 335; var player_height= 320; function printPlayer(name, autostart){ current_time = (new Date()).getSeconds(); var s1 = new SWFObject(out_path + "flvplayer.swf?" + current_time, "single", player_width, player_height,"7"); s1.addParam("allowfullscreen","true"); s1.addVariable("file",movie_path + name + ".flv"); s1.addVariable("image",movie_path + name + ".jpg"); s1.addVariable("width", player_width); s1.addVariable("height", player_height); if( autostart == true ) s1.addVariable("autostart", true); document.write('Get Flash Player'); s1.write("player_" + name); }