﻿/* Video Incrementing Function
Used for tracking views of a video.
Include this in embed code to ensuree that the video is tracked.

to execute code, just include videoTracker.js and call videoTracker(VideoID,WebsiteOwnerURL);
*/
function videoTracker(id) {
    top.frames["videoTrackIFrame"].location = "http://www.locotv.com.au/handlers/IncrementCounter.ashx?id=" + id + "&referrer=" + document.location.href;
}
function videoPlayer(id)
{
document.write("<embed type=\"application/x-shockwave-flash\" src=\"http://www.locotv.com.au/JWMediaPlayer.swf\" style=\"\"");
document.write("id=\"fl_player\" name=\"fl_player\" quality=\"high\" wmode=\"transparent\" allowfullscreen=\"true\" allowscriptaccess=\"always\"");
document.write("flashvars=\"file=http://www.locotv.com.au/Handlers/FLVHandler.ashx?videoID=" + id + "&amp;bufferlength=0&amp;autostart=false\"");
document.write("width=\"512\" height=\"308\">");
}

function videoPlayer(id, autoplay)
{
document.write("<embed type=\"application/x-shockwave-flash\" src=\"http://www.locotv.com.au/JWMediaPlayer.swf\" style=\"\"");
document.write("id=\"fl_player\" name=\"fl_player\" quality=\"high\" wmode=\"transparent\" allowfullscreen=\"true\" allowscriptaccess=\"always\"");
document.write("flashvars=\"file=http://www.locotv.com.au/Handlers/FLVHandler.ashx?videoID=" + id + "&amp;bufferlength=0&amp;autostart=" + autoplay + "\"");
document.write("width=\"512\" height=\"308\">");
}

function videoEmbed(id) {
    videoPlayer(id);
    videoTracker(id);
}

function videoEmbed(id, autoplay) {
    videoPlayer(id, autoplay);
    videoTracker(id);
}

document.write("<iframe style='display:none;' id='videoTrackIFrame' name='videoTrackIFrame' src='' width='200' height='200'></iframe>")
