   function WriteFlash(SWFfile, w, h)
   {
	    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+w+'" height="'+h+'">');
        document.write('<param name="movie" value="'+SWFfile+'">');
        document.write('<param name="quality" value="high">');
        document.write('<param name="wmode" value="transparent">');
        document.write('<embed src="'+SWFfile+'" quality="high" pluginspage="https://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+w+'" height="'+h+'" wmode="transparent"></embed>');
        document.write('</object>');
   }
   
   function ShowYouTube(url)
   {
        if (url != "")
        {
            myWriteFlash(url, 286, 231);
        }
   }
    
   function myWriteFlash(SWFfile, w, h)
   {
	    var str = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+w+'" height="'+h+'">';
        str += '<param name="movie" value="'+SWFfile+'">';
        str += '<param name="quality" value="high">';
        str += '<param name="wmode" value="transparent">';
        str += '<embed src="'+SWFfile+'" quality="high" pluginspage="https://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+w+'" height="'+h+'" wmode="transparent"></embed>';
        str += '</object>';
        
         document.getElementById("youtube").innerHTML = str;
   }
  
  function fbs_click() {u=location.href;t=document.title;window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');return false;} 
  
   