function ShowVideoF(title,duration,url)
{

location.href = "/VideosPresentation.aspx?t=" + urlencode(title) + "&d="  + urlencode(duration) + "&u=" + urlencode(url) ;

}

function ShowVideoDDF(title,duration,url)
{

location.href = "/VideosPresentationDD.aspx?t=" + urlencode(title) + "&d="  + urlencode(duration) + "&u=" + urlencode(url) ;

}

function ShowVideoE(title,duration,url)
{

location.href = "/EN/VideosPresentation.aspx?t=" + urlencode(title) + "&d="  + urlencode(duration) + "&u=" + urlencode(url) ;

}

function LoadHistory(pagecount)
{
history.go(pagecount);
}

function urlencode(str) {
return escape(str).replace('+', '%2B').replace('%20', '+').replace('*', '%2A').replace('/', '%2F').replace('@', '%40');
}

function urldecode(str) {
return unescape(str.replace('+', ' '));
}

function StopPlayer()
{
document.getElementById('MediaPlayer').FileName='';

//document.getElementById('MediaPlayer').controls.stop();

}