function showvideo(obj,cod,name,desc){
  var width    = '99%';
  var height   = '391';
  if(!cod) return false; 
  $('#conteiner_youtube').html('загрузка');
  var html = '<object width="'+width+'" height="'+height+'">';
  html+= '<param name="movie" value="http://www.youtube.com/v/'+cod+'&hl=ru_RU&fs=1&"></param>';
  html+= '<param name="allowFullScreen" value="true"></param>';
  html+= '<param name="allowscriptaccess" value="always"></param>';
  html+= '<embed src="http://www.youtube.com/v/'+cod+'&hl=ru_RU&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="'+width+'" height="'+height+'"></embed>';
  html+= '</object>';
  $(obj).parent().find('.active').removeClass('active');
  $(obj).addClass('active');
  $('#conteiner_youtube').html(html);
  $('.video_title').html(name);
  $('.video_sub').html(desc);
  return false;
}

function PopUpShowVideo(cod){
  var width    = '100%';
  var height   = '391';
  if(!cod) return false; 
  $('#conteiner_youtube').html('загрузка');
  var html = '<object width="'+width+'" height="'+height+'">';
  html+= '<param name="movie" value="http://www.youtube.com/v/'+cod+'&hl=ru_RU&fs=1&autoplay=1"></param>';
  html+= '<param name="allowFullScreen" value="true"></param>';
  html+= '<param name="allowscriptaccess" value="always"></param>';
  html+= '<embed src="http://www.youtube.com/v/'+cod+'&hl=ru_RU&fs=1&autoplay=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="'+width+'" height="'+height+'"></embed>';
  html+= '</object>';   
  return html;
}

function Audio(cod){
  var width    = '404';
  var height   = '60';
  if(!cod) return false; 
  
  var html = '<object width="404" height="60" data="http://flv-mp3.com/i/pic/ump3player_500x70.swf" type="application/x-shockwave-flash">';
			html+= '<param value="transparent" name="wmode">';
			html+= '<param value="true" name="allowFullScreen">';
			html+= '<param value="always" name="allowScriptAccess">';
			html+= '<param value="http://flv-mp3.com/i/pic/ump3player_500x70.swf" name="movie">';
			html+= '<param value="way=/data/home/faudio/file/sample_1.mp3&amp;swf=http://flv-mp3.com/i/pic/ump3player_500x70.swf&amp;w=404&amp;h=60&amp;autoplay=0&amp;q=&amp;skin=black&amp;volume=70&amp;comment=" name="FlashVars">';
			html+= '</object>';
  
  return html;
}



