// JavaScript Document

function getVideoWithoutPlayer(obj){

	var s1 = new SWFObject(obj,'player','341','264','9');
	s1.addParam('allowfullscreen','true');
	s1.addParam('allowscriptaccess','always');
	s1.write('preview');
	
}

function getVideoWithPlayer(obj){
	var s1 = new SWFObject('javascripts/player.swf','player','341','284','9');
	s1.addParam('allowfullscreen','true');
	s1.addParam('allowscriptaccess','always');
	s1.addParam('flashvars','file=' + obj);
	s1.write('preview');
	
}

function flashtext(){

	var s2 = new SWFObject('video/Flash.swf','anim','500','264','9');
	s2.addParam('wmode','transparent');
	s2.write('show');
	
}