
       var cnt=0;

    function watchVideoContent(direc) {

    var define=document.watchVideo.define.value;

    var stepValue=1, videoId='', mainVidId='';

    var start=0, end=6, pageTot;

    pageTot=parseInt(document.watchVideo.countVideo.value)-1;

     videoId=document.watchVideo.videoID.value;

     mainVidId=document.watchVideo.mainVidID.value;

    if(direc=='Next'){ 

      stepValue=parseInt(document.watchVideo.step.value)+1;

      if(stepValue>=pageTot) stepValue=pageTot;

      start=document.watchVideo.vidID.value;
    }

    if(direc=='Prev'){

      stepValue=parseInt(document.watchVideo.step.value)-1;

      if(stepValue<=0) stepValue=0;

      start=document.watchVideo.vidID.value;
    }

    document.watchVideo.step.value=stepValue;

           $("#watch_player_div").load(define+"watchVideo.php?id="+start+'&videoId='+videoId+'&mainVidId='+mainVidId+'&step='+stepValue);

    }

    

function resize(id, size)

{    

    var define=document.watchVideo.define.value;

    $("#watch_player_div").load(define+"watchVideoResize.php?vidId="+id+"&size="+size);

}




 jQuery(document).ready(function() {

   lightsoff();

 });

