var selected_youtube=0;
function load_youtube(playerid,id,site,width,height){
if(selected_youtube)
jQuery("#y"+selected_youtube).css({backgroundColor:"#FEFEFE"});
jQuery("#y"+id).css({backgroundColor:"#DEDEDE"});
selected_youtube = id;

if(!width) width=350;
height = 349*width/425;
if(!site) site = 'dw';
if(site=='dw')
var a = '<object width="'+width+'" height="'+height+'"><param name="wmode" value="opaque"></param><param name="bgcolor" value="transparent"></param> <param name="movie" value="http://www.youtube.com/v/'+id+'&hl=en&fs=1&rel=0&color1=0xe1600f&color2=0xfebd01&border=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/'+id+'&hl=en&fs=1&rel=0&color1=0xe1600f&color2=0xfebd01&border=1" type="application/x-shockwave-flash" allowfullscreen="true" width="'+width+'" height="'+height+'"></embed></object>';
else if(site=='sp')
var a = '<object width="'+width+'" height="'+height+'"><param name="wmode" value="opaque"></param> <param name="movie" value="http://www.youtube.com/v/'+id+'&hl=en&fs=1&rel=0&color1=0x336699&color2=0xcccccc&border=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/'+id+'&hl=en&fs=1&rel=0&color1=0x336699&color2=0xcccccc&border=1" type="application/x-shockwave-flash" allowfullscreen="true" width="'+width+'" height="'+height+'"></embed></object>';
jQuery('#div_player_youtube'+playerid).show();
jQuery('.select_video').hide();
jQuery('#div_player_youtube'+playerid).html(a);

}
