﻿// JScript File

var VideoInfoTemplate = new Template();

VideoInfoTemplate.HeaderStyle = '';
VideoInfoTemplate.FooterStyle = '';
VideoInfoTemplate.AlternateStyle = '';

VideoInfoTemplate.ItemStyle = '<div class="topinfos">{ModDate}</div>';
VideoInfoTemplate.ItemStyle += '<div class="articoli">';
VideoInfoTemplate.ItemStyle += '<h1>{Title}</h1>';
VideoInfoTemplate.ItemStyle += '<p>{ExtendedText}</p>';
VideoInfoTemplate.ItemStyle += '<p class="durata-video"></p>';
VideoInfoTemplate.ItemStyle += '</div><div class="bottominfos"></div>';


function DisplayVideoInformation(res)
{
    var rl = [];
    rl[rl.length] = res;
    var r = new RenderEngine();
    r.template = VideoInfoTemplate;
	r.list = rl;
	document.getElementById('VideoInfo').innerHTML = r.Render();
	document.getElementById('VideoInfo').style.display = 'block';
}


function SetQualityCookie(quality) {
	createCookie("f",quality,365);
}


function createCookie(name,value,days)
{
	if (days)
	{
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else var expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
}


function HighlightConnectionQuality(quality){
    if (quality==1)
	{
	    if (document.getElementById('Qual1'))
	    {
	        document.getElementById('Qual1').innerHTML = '<img class="download" src="img/bot-low-speed_.gif" border="0" title="Low Speed" alt="Low Speed">';
	        document.getElementById('Qual2').innerHTML = '<img class="download" src="img/bot-high-speed.gif" border="0" onclick="javascript:ChangeQuality(2);" onmouseover="this.style.cursor=\'pointer\'; this.src=\'img/bot-high-speed_.gif\'" onmouseout="this.style.cursor=\'default\'; this.src=\'img/bot-high-speed.gif\'" title="High Speed" alt="High Speed">';
	    }
	}
	else
	{
	    if (document.getElementById('Qual2'))
	    {
	        document.getElementById('Qual2').innerHTML = '<img class="download" src="img/bot-high-speed_.gif" border="0" title="High Speed" alt="High Speed">';
	        document.getElementById('Qual1').innerHTML = '<img class="download" src="img/bot-low-speed.gif" border="0" onclick="javascript:ChangeQuality(1);" onmouseover="this.style.cursor=\'pointer\'; this.src=\'img/bot-low-speed_.gif\'" onmouseout="this.style.cursor=\'default\'; this.src=\'img/bot-low-speed.gif\'" title="Low Speed" alt="Low Speed">';
	    }
	}
}