// onload
var oldonload = window.onload;
  if (typeof window.onload != 'function') {
  }

function omniVideoOnLoad () {
}

// videoMode - corresponds to the mode under which the video was played, i.e. single video, three video list, browse, browse with categories
// mediaName - The name of the media item as it will appear in reports.
// mediaLength - The length of the media item in seconds
function videoStart ( mediaName, videoMode, mediaLength ) {
}

// mediaName - The name of the media item as it will appear in reports.
// mediaOffset - The seconds into the media item that play begins. The offset is a zero based number.
function videoPause ( mediaName, mediaOffset ) {
}

// mediaName - The name of the media item as it will appear in reports.
// mediaOffset - The seconds into the media item that play begins. The offset is a zero based number.
function videoStop ( mediaName, mediaOffset ) {
}

// mediaName - The name of the media item as it will appear in reports.
function videoCompleted(mediaName) {
}

// mediaName - The name of the media item as it will appear in reports.
function sendToAFriend ( mediaName ) {
}

// clickEvent - corresponds to the Link Text prefixed with "Video: " (i.e. "Video: Play Video Again")
function otherClickEvent ( clickEvent ) {
}