var iVideoID = 0;

function increaseViewCount(id) {

$.ajax({
  type: "GET",
  url: "/inc/php/increaseViewCount.php?id=" + id
});

}

function setUsername(id) {

  $('#userName').load ("/inc/php/getUsername.php?id=" + id + "&rand="+ ( Math.round ( Math.random() * 100000 ) ) );

}

function setVideoName(name, id) {

 // if ( name != false )
    document.getElementById('videoName').innerHTML = name;
 // else
   // $('#videoName').load ( "/inc/php/getVideoName.php?id=" +id + "&rand="+ ( Math.round ( Math.random() * 100000 ) ) );

}

function increaseNotOK() {

  if ( iVideoID === 0 ) return;

  if (! confirm ( 'Weet u het zeker?' ) ) return;
     $.ajax({
    type: "GET",
    url: "/inc/php/notOK.php?id=" + iVideoID
  });

 // document.getElementById('notOK').innerHTML = 'Bedankt voor het melden!';
 alert ( 'Bedankt voor het melden!');

}

function buildRating(id) {

  //$("div#ratingBarr").load("temp/inc/php/rating/getRatingBar.php?id=" +id + "&rand=" + ( Math.round ( Math.random() * 100000 ) ),{}, function() {  Behaviour.apply() } );

}

function buildComments(id,width,height) {

  document.getElementById('comments').innerHTML = '<span style="color:#999999"><a href="/video_comments.php?id=' + id +'" title="Reacties"><img src="http://www.blogmysport.com/inc/gfx/video_reacties.png" align="absmiddle" style="border:0px;"/></a> | <a href="/video_send.php?width=' + width + '&height=' + height + '&id=' + id + '" title="Stuur door"><img src="http://www.blogmysport.com/inc/gfx/video_vriend.png"  align="absmiddle" style="border:0px;"/></a> | <a href="/video_rating.php?id=' + id +'" title="Geef een waardering"><img src="http://www.blogmysport.com/inc/gfx/video_rate.png"  align="absmiddle" style="border:0px;"/></a> | <a href="/video_embed.php?iVideoID='+ id +'&id=' + id +'&width=' + width + '&height=' + height + '" title="Embed deze video op uw eigen website"><img src="http://www.blogmysport.com/inc/gfx/video_embed.png"  align="absmiddle"  style="border:0px;"/></a> | <a href = "#" onclick = "increaseNotOK()" title="Dit is niet OK"><img src = "http://www.blogmysport.com/inc/gfx/thumb_down.png" align="absmiddle" style = "border: 0px;" /></a></span>';

}

function togglee(div) {

  if ( iVideoID == 0 ) return;
  if ( document.getElementById(div).style.display == 'none' )
    document.getElementById(div).style.display = 'block';
  else
    document.getElementById(div).style.display = 'none';


}

onerror=handleErr;

function handleErr(msg,url,l)
{
return false;
}

function changeData(width,height,id,name) {

  $('#searchResults').hide();
        $('#video').show();

    iVideoID = id;

    var s2 = new SWFObject("/flvplayer.swf","overlay",width,height,"7");
    s2.addParam("allowfullscreen","true");
    s2.addParam("menu","false");
    s2.addVariable('width', width);
    s2.addVariable('height', height);
    s2.addVariable("backcolor","0x000000");
    s2.addVariable("enablejs","true");
    s2.addVariable("file","/overlay.php?iVideoID=" + id);
    s2.addVariable("frontcolor","0xCCCCCC");
    s2.addVariable("lightcolor","0xF47F29");
    s2.write ("player2");

    /* comments */
    buildComments(id,width,height);

    /* rating change */
//    buildRating(id);

    /* video name */
    setVideoName(name);

    /* increase view count */
    increaseViewCount(id);

    setUsername(id);

}