var xmlHttp;

//-----------------------------------------------------------------
function getcode(vid)
{   
    
	//document.getElementById('showdropdown').style.visibility = 'hidden';

	xmlHttp=GetXmlHttpObject();
	if (xmlHttp==null)
  	{
  		//alert ("Your browser does not support AJAX!");
  		return;
  	}
	var url="index.php?main_page=video_code&vid="+vid+"&ajax=true";		

	xmlHttp.onreadystatechange=stateChanged2;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);
}

function stateChanged2() 
{ 

	if (xmlHttp.readyState==4)
	{
		
	 document.getElementById("videoPlayer").innerHTML=xmlHttp.responseText;	
	}
}

//---------------------------------------------------------------------------------
function GetXmlHttpObject()
{
var xmlHttp=null;
try
  {
  // Firefox, Opera 8.0+, Safari
   xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
     xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
     xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp;
}
//-----------------------------------------------------------------

function video_show(file){
	text = '<object width="309" height="180" id="flvPlayer"><param name="movie" value="video/OSplayer.swf?movie='+file+'&amp;btncolor=0x333333&amp;accentcolor=0x20b3f7&amp;txtcolor=0xffffff&amp;volume=90&amp;previewimage=previewimageurl&amp;autoplay=on"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="video/OSplayer.swf?movie='+file+'&amp;btncolor=0x333333&amp;accentcolor=0x20b3f7&amp;txtcolor=0xffffff&amp;volume=90&amp;previewimage=previewimageurl&amp;autoplay=on" allowscriptaccess="always" allowfullscreen="true" width="309" height="180"></embed></object>';
	//text = file ;
	document.getElementById('videoPlayer').innerHTML = text;
}

