// JavaScript Document
function Calificar(calificacion,id_video)
{
	var c_cat; 
	c_cat= document.getElementById('calificame'); 
	c_cat.innerHTML = "rating...";
	
	ajaxcat=nuevoAjax(); 
	ajaxcat.open("POST", "js/calificar.php",true); 
	ajaxcat.onreadystatechange=function() { 
		if (ajaxcat.readyState==4) { 
   			c_cat.innerHTML = ajaxcat.responseText 
		}	 
	} 
	ajaxcat.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
	ajaxcat.send("calificacion="+calificacion+"&id_video="+id_video);
}

function Favorites(id_video,username)
{
		var x;
		x=document.getElementById('favoritos');
		x.innerHTML="Adding to favorites...";
		ajaxcat=nuevoAjax(); 
		ajaxcat.open("POST", "js/favoritos.php",true); 
		ajaxcat.onreadystatechange=function() { 
		if (ajaxcat.readyState==4) { 
   			x.innerHTML = ajaxcat.responseText 
		}	 
	} 
	ajaxcat.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
	ajaxcat.send("id_video="+id_video+"&username="+username);		
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

/*function PlayItFirst(filename,ext,ancho,alto,auto)
{        
	if(ext=="mov")     
	{
	document.getElementById("video").innerHTML="<OBJECT CLASSID=\"clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B\" WIDTH=\""+ancho+"\" HEIGHT=\""+alto+"\" CODEBASE=\"http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0\"><PARAM NAME=\"controller\" VALUE=\"FALSE\"><PARAM NAME=\"type\" VALUE=\"video/quicktime\"><PARAM NAME=\"autoplay\" VALUE=\""+auto+"\"><PARAM NAME=\"target\" VALUE=\"myself\"><PARAM NAME=\"src\" VALUE=\""+filename+"\"><PARAM NAME=\"pluginspage\" VALUE=\"http://www.apple.com/quicktime/download/indext.html\"><PARAM  NAME=\"CONTROLLER\" value=\"False\"><PARAM  NAME=\"enablejavascript\" value=\"true\"><PARAM  NAME=\"scale\" value=\"ToFit\"><PARAM NAME=\"BGCOLOR\" VALUE=\"#000000\"><EMBED WIDTH=\""+ancho+"\" HEIGHT=\""+alto+"\" CONTROLLER=\"FALSE\" TARGET=\"myself\" SRC=\""+filename+"\" type=\"video/quicktime\" PLUGINSPAGE=\"http://www.apple.com/quicktime/download/indext.html\" name=\"video\" enablejavascript=\"true\" autoplay=\""+auto+"\" scale=\"ToFit\" BGCOLOR=#000000></EMBED></object>";		
				
	}
	else
	{

	document.getElementById("video").innerHTML ="<object width=\""+ancho+"\" height=\""+alto+"\" classid=\"CLSID:22d6f312-b0f6-11d0-94ab-080c74c7e95\" standby=\"Loading Windows Media Player components...\" type=\"application/x-oleobject\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112\"><param name=\"autostart\" value=\""+auto+"\"><param name=\"ShowControls\" value=\"false\"><param name=\"ShowStatusBar\" value=\"False\"><param name=\"ShowDisplay\" value=\"False\"><param name=\"AutoRewind\" value=\"False\"><param name=\"Filename\" id=\"filename\" value=\"" + filename + "\"><PARAM NAME=\"enablejavascript\" VALUE=\"true\"><embed type=\"application/x-mplayer2\" pluginspage=\"http://www.microsoft.com/Windows/Downloads/Contents/MediaPlayer/\" width=\""+ancho+"\" height=\""+alto+"\" src=\"" + filename + "\" showstatusbar=\"False\" autostart=\""+auto+"\" showcontrols=\"0\" showdisplay=\"False\" autorewind=\"false\" enablejavascript=\"true\"></embed></object>"; 
	}
}*/
function PlayIt(filename,ext,ancho,alto,auto)
{        
	if(ext=="mov" || ext=="qt")     
	{
	document.getElementById("video").innerHTML="<EMBED WIDTH=\""+ancho+"\" HEIGHT=\""+alto+"\" CONTROLLER=\"FALSE\" TARGET=\"myself\" SRC=\""+filename+"\" type=\"video/quicktime\" PLUGINSPAGE=\"http://www.apple.com/quicktime/download/indext.html\" name=\"video\" enablejavascript=\"true\" autoplay=\""+auto+"\" scale=\"ToFit\" BGCOLOR=#000000></EMBED>";		
				
	}
	else
	{

	document.getElementById("video").innerHTML ="<object width=\""+ancho+"\" height=\""+alto+"\" classid=\"CLSID:22d6f312-b0f6-11d0-94ab-080c74c7e95\" standby=\"Loading Windows Media Player components...\" type=\"application/x-oleobject\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112\"><param name=\"autostart\" value=\""+auto+"\"><param name=\"ShowControls\" value=\"false\"><param name=\"ShowStatusBar\" value=\"False\"><param name=\"ShowDisplay\" value=\"False\"><param name=\"AutoRewind\" value=\"False\"><param name=\"Filename\" id=\"filename\" value=\"" + filename + "\"><PARAM NAME=\"enablejavascript\" VALUE=\"true\"><embed type=\"application/x-mplayer2\" pluginspage=\"http://www.microsoft.com/Windows/Downloads/Contents/MediaPlayer/\" width=\""+ancho+"\" height=\""+alto+"\" src=\"" + filename + "\" showstatusbar=\"False\" autostart=\""+auto+"\" showcontrols=\"0\" showdisplay=\"False\" autorewind=\"false\" enablejavascript=\"true\"></embed></object>"; 
	}
}