// JavaScript Document

function PlayVideo(vid,ima,auto,w,h,p){
	jwplayer(p).setup({
 		flashplayer: 'http://serpadres.com/wp-content/themes/sm/player.swf',
 		file       : vid,
 		autostart  : auto,
		image      : ima,
 		height     : h,
 		width      : w,
		stretching : 'fill',
		controlbar : 'bottom', backcolor:'#333333', frontcolor:'#CCCCCC', lightcolor:'#F4F4F4'
 	});	
}


function PlayYoutube(video,auto,w,h,p){
	PlayVideo('http://www.youtube.com/watch?v='+video,'http://img.youtube.com/vi/'+video+'/0.jpg',auto,w,h,p);
}

function PlayVideOld(vid,ima,auto,w,h,p){
	var moviefile = vid;	var imagefile = ima; 
	var varflash='&icons=true&backcolor=#333333&frontcolor=#CCCCCC&lightcolor=#FFFFFF';
	if (auto==1) varflash=varflash+'&autostart=true';
	varflash=varflash+'&image='+imagefile;
        var s1 = new SWFObject('player.swf',p,w,h,'8');
        s1.addParam('allowfullscreen','true');
        s1.addParam('allowscriptaccess','always');
     	s1.addParam('wmode','transparent');
        s1.addParam('flashvars','file='+moviefile+varflash);
        s1.write(p);
}

