/*========== videos.js ==========*/
var viewVideo={};

viewVideo.play=function(file, thumb, obj,width,height){
	
	
	var myswf = new Swiff('/player/player.swf', {
		width: width,
		height: height,
		container: obj,
		vars: {
			file: file,
			image: thumb,
			backcolor: '#82A6D6',
			frontcolor: 'ffffff',
			lightcolor: '#BDD1EA',
			screencolor: '82A6D6',
			stretching: 'fill'
		}
	});
	
}

