Order Now AdSolution Sign Up | Login » Bits on the Run Sign Up | Login »

Forums

/

Javascript change RTMP stream

23 replies [Last post]

I have been pulling my hair out trying to figure out how to use Javascript to change an RTMP stream.

I had though that using loadFile('jstest',{file:'rtmp://myserver.com/vidoes',id:'video_file'}); would do the trick, but I keep getting an error

"uncaught exception: Error calling method on NPObject! [plugin exception: Error in Actionscript. Use a try/catch block to find error.]."

I can not track this down, and can not find a fix posted here.

BTW: I can not access the files via anymethod other than RTMP. Also, I am using the 3.16 version of the player.

I appreciate anyones assistance.

loadFile() works fine for RTMP streams in the v3.16 player, so post your FULL player code and we'll have a look.

flashplayer.js

/*-------------------------------------------------------------------
Player javascript API
-------------------------------------------------------------------*/
function sendEvent(swf, typ, prm){
thisMovie(swf).sendEvent(typ, prm);
};

function getUpdate(typ, pr1, pr2, swf){
if((typ == 'state') && (swf == 'jstest')){
gid('stateshow').innerHTML = pr1;
}
if (typ == 'time'){
gid('time').innerHTML = pr1;
}
};

function loadFile(swf, obj){
thisMovie(swf).loadFile(obj);
};

function getLength(swf){
var len = thisMovie(swf).getLength();
alert('the length of the playlist is: ' + len);
};

function addItem(swf, obj, idx){
thisMovie(swf).addItem(obj, idx);
};

function removeItem(swf, idx){
thisMovie(swf).removeItem(idx);
};

function itemData(swf, idx){
var obj = thisMovie(swf).itemData(idx);
var txt = "";
for(var i in obj){
txt += i + ": " + obj[i] + "\n";
}
alert(txt);
};

function thisMovie(movieName){
if(navigator.appName.indexOf("Microsoft") != -1){
return window[movieName];
}else{
return document[movieName];
}
};

Javascript function:

function createPlayer(pId){
if(pId == 'undefined'){
pId = 'movie';
}
var s1 = new SWFObject("http://mywebserver.com/embed/mediaplayer.swf","ccvideo","623","350","8");
s1.addParam("allowfullscreen","true");
s1.addVariable("width","623");
s1.addVariable("height","350");
s1.addVariable("file","rtmp://videos.mywebserver.com/videos");
s1.addVariable("id",pId);
s1.addVariable('javascriptid','ccvideo');
s1.addVariable('enablejs','true');
s1.write("container");
}

Javascript:

loadFile('ccvideo',{file:'rtmp://videos.mywebserver.com/videos',id:'video_file'});

Your code looks OK.

Here's a fully functional, tested page.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

<html lang="en">

  <head>

    <title>neoPhilip</title>

    <script type="text/javascript" src="swfobject.js"></script>

    <script type='text/javascript'>
      function sendEvent(swf, typ, prm)
      {
        thisMovie(swf).sendEvent(typ, prm); 
      };

      function getUpdate(typ, pr1, pr2, swf)
      {
        if((typ == 'state') && (swf == 'ccvideo'))
        {
          gid('stateshow').innerHTML = 'State: ' + pr1;
        }
        if (typ == 'time')
        {
          gid('time').innerHTML = 'Time: ' + pr1;
        }
      };

      function loadFile(swf, obj)
      {
        thisMovie(swf).loadFile(obj); 
      };

      function getLength(swf)
      {
        var len = thisMovie(swf).getLength();
        alert('the length of the playlist is: ' + len);
      };

      function addItem(swf, obj, idx)
      {
        thisMovie(swf).addItem(obj, idx);
      };

      function removeItem(swf, idx)
      {
        thisMovie(swf).removeItem(idx);
      };

      function itemData(swf, idx)
      {
        var obj = thisMovie(swf).itemData(idx);
        var txt = '';
        for(var i in obj)
        {
          txt += i + ': ' + obj[i] + '\n';
        }
        alert(txt);
      };

      function gid(name)
      {
    return document.getElementById(name);
      };

      function thisMovie(movieName)
      {
        if(navigator.appName.indexOf('Microsoft') != -1)
        {
          return window[movieName];
        }
        else
        {
          return document[movieName];
        }
      };
    </script>

    <script type='text/javascript'>
      function createPlayer(pId)
      {
        if(pId == 'undefined')
        {
          pId = 'movie';
        }
        var s1 = new SWFObject('http://mywebserver.com/embed/mediaplayer.swf', 'ccvideo', '623', '350', '8');
            s1.addParam('allowfullscreen',            'true');
            s1.addVariable('width',                   '623');
            s1.addVariable('height',                  '350');
            s1.addVariable('file',                    'rtmp://videos.mywebserver.com/videos');
            s1.addVariable('id',                       pId);
            s1.addVariable('enablejs',                'true');
            s1.addVariable('javascriptid',            'ccvideo');
            s1.write('container');
      };
    </script>

  </head>

  <body onload="createPlayer('video');">

    <div id="container">
      Player
    </div>
    <div id="time">
      Time
    </div>
    <div id="stateshow">
      State
    </div>

    <button onclick="loadFile('ccvideo', {file:'rtmp://videos.mywebserver.com/videos', id:'video_file'}); return false;">Load Video</button>
    
  </body>

</html>

Insert your domain and filenames.

OK, I have made a page on our dev server with that code and applicable element altered.

I get thisMovie(swf).loadFile is not a function

If I add: s1.addParam('allowscriptaccess', 'always');

I get the "ncaught exception: Error calling method on NPObject! [plugin exception: Error in Actionscript. Use a try/catch block to find error.]." again.

I know it can not be this difficult... It must be something easy.

I appreciate your assistance, as I know this is frustrating.

-Phillip

Did the player appear and does it play the default video?

The player appears, however no video

Are these two defaults (in bold) valid files?

    <script type='text/javascript'>
      function createPlayer(pId)
      {
        if(pId == 'undefined')
        {
          pId = '<strong>movie</strong>';
        }
        var s1 = new SWFObject('http://mywebserver.com/embed/mediaplayer.swf', 'ccvideo', '623', '350', '8');
            s1.addParam('allowfullscreen',            'true');
            s1.addVariable('width',                   '623');
            s1.addVariable('height',                  '350');
            s1.addVariable('file',                    '<strong>rtmp://videos.mywebserver.com/videos</strong>');
            s1.addVariable('id',                       pId);
            s1.addVariable('enablejs',                'true');
            s1.addVariable('javascriptid',            'ccvideo');
            s1.write('container');
      };
    </script>

  </head>

  <body onload="createPlayer('<strong>video</strong>');">

And do you have the correct URL to your RTMP stream?

Yes they are. The reason I am sure is the page works for the first video. It is only when trying to use javascript that the errors come up.

I had the same issue with the player. So any solutions to this problem?

Try replacing the thisMovie() function with this:

      function thisMovie(movieName)
      {
        return document.getElementsByName(movieName)[0];
      };

I have also encountered this problem as of late. Although I do not currently have a solution, I have narrowed down what the problem seems to be. In my case, I cannot communicate with the player from another domain other than the one that the .swf is hosted on. I can copy and paste the same code to the same domain that the .swf is on and the javascript interaction works properly. I'm not extremely familiar with flash/action script development, but it seems like this could be a security issue. Is there anything in the actionscript that can be changed in order to allow multiple domains to access and interact with the player.

Please note: The player is functioning properly on different domains, just not the javascript interaction piece.

Thanks,

Cross-site scripting is prohibited by browser security restrictions.

There are ways to allow some browsers to work, but it involves the user making changes in the browser configuration, so it's not practical to use.

Thanks for the reply,

So if I'm understanding right, the flash object can communicate to the browser from any domain (as the getUpdate function works properly); however, the browser can't talk to the flash object from any domain (as the sendEvent function does throws the error). Is this correct?

What I was attempting to do is create a custom playlist panel that would interact with the player. This works well on the same domain as the swf, however, I wanted to create a snippet that users would be able to put the video and playlist panel on any domain. Seems that I will have to use the playlist panel included in the player.

In this particular case, cross-site scripting would be executing JavaScript code that comes from a domain that is different than the domain that the Flash movie (mediaplayer.swf) is hosted on.

It's a big security vulnerability, so most modern browsers prohibit it unless the user specifically makes configuration changes to allow it.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

<html lang="en">

<head>

<title>neoPhilip</title>
<script type="text/javascript" src="http://www.pinaychannel.com/js/swfobject.js"></script>
<script language="javascript">
//from bizreel
if(document.getElementById('selPageBody'))
{
var a = document.getElementById('selPageBody').getElementsByTagName('a');
//var site_url = ;
for(var i=0; i<a.length; i++){
clk = a[i].onclick + '';
if((clk == 'null') || (clk == 'undefined') || (clk=='')){
a[i].onclick = function(){
var hurl = this.href;
if(hurl.indexOf('http://www.pinaychannel.com/')<0)
this.target = "_blank";
}
}
}
}
</script>
<script language="javascript">
var max_timer = 120;
changeTimer();
var dontUse = 0;
</script>
<script language="javascript">
var vLoader = 'loaderVideos';

var homeUrl = 'http://www.pinaychannel.com/action/viewvideo/3464/';
var disPrevButton = 'disabledPrevButton';
var disNextButton = 'disabledNextButton';
var pars= 'vLeft=&vFetch=';

function moveVideoSetToLeft(buttonObj, pg)
{
if(pg=='tag')
var pars= 'vTagLeft=&vTagFetch=';
if(pg=='user')
var pars= 'vUserLeft=&vUserFetch=';
if(pg=='top')
var pars= 'vTopLeft=&vTopFetch=';
if(pg=='resp')
var pars= 'vRespLeft=&vRespFetch=';

if(buttonObj.className ==disPrevButton)
{
return false;
}
videoSlider(pars, pg);
}
function moveVideoSetToRight(buttonObj, pg){

//alert('RIGHT----'+pg);
if(pg=='tag')
var pars= 'vTagRight=&vTagFetch=';
if(pg=='user')
var pars= 'vUserRight=&vUserFetch=';
if(pg=='top')
var pars= 'vTopRight=&vTopFetch=';
if(pg=='resp')
var pars= 'vRespRight=&vRespFetch=';

if(buttonObj.className ==disNextButton){
return false;
}
videoSlider(pars, pg);
}
function videoSlider(pars, pg)
{
if(pg=='resp')
{
showDiv('loaderRespVideos');
new Ajax.Request(homeUrl, {method:'post',parameters:pars+'&ajax_page=1&video_id=3464', onComplete:refreshVideoBlockResp});
return;
}
showDiv('loaderVideos');
if(pg=='tag')
new Ajax.Request(homeUrl, {method:'post',parameters:pars+'&ajax_page=1&video_id=3464&video_tags=LiveTV', onComplete:refreshVideoBlockTag});
if(pg=='user')
new Ajax.Request(homeUrl, {method:'post',parameters:pars+'&ajax_page=1&video_id=3464&user_id=1', onComplete:refreshVideoBlockUser});
if(pg=='top')
new Ajax.Request(homeUrl, {method:'post',parameters:pars+'&ajax_page=1&video_id=3464', onComplete:refreshVideoBlockTop});
}

refreshVideoBlockTag = function(resp)
{

//alert(resp.responseText);
//$('selRelatedContent').update(resp.responseText);
$('selRelatedContent').innerHTML=resp.responseText;
hideDiv('loaderVideos');
//$('loaderVideos').display='none';
}

refreshVideoBlockTop = function(resp)
{
//alert(resp.responseText);
//$('selTopContent').innerHTML='';
$('selTopContent').innerHTML=resp.responseText;
hideDiv('loaderVideos');
}
refreshVideoBlockUser = function(resp)
{
$('selUserContent').innerHTML=resp.responseText;
//$('selUserContent').update(resp.responseText);
hideDiv('loaderVideos');
}

refreshVideoBlockResp = function(resp)
{
$('selUserContentResp').innerHTML=resp.responseText;
//$('selUserContent').update(resp.responseText);
hideDiv('loaderRespVideos');
}
</script>
<script type='text/javascript'>
function createPlayer(pId)
{
if(pId == 'undefined')
{
pId = 'http://www.pinaychannel.com/new/mediaplayer.swf','mpl','520','420','9';
}
var s1 = new SWFObject('http://www.pinaychannel.com/new/mediaplayer.swf','mpl','520','420','9');
s1.addParam('allowfullscreen', 'true');
s1.addVariable('width', '623');
s1.addVariable('height', '350');
s1.addVariable('file', 'rtmp://livefeed.pinaychannel.com/abs/live/stream&logo=http://www.pinaychannel.com/pinaylogo.png&skin=http://www.pinaychannel.com/new/stijl.swf&autostart=t...');
s1.addVariable('id', pId);
s1.addVariable('enablejs', 'true');
s1.addVariable('javascriptid', 'ccvideo');
s1.write('container');
};
</script>

</head>

<body onload="createPlayer('http://www.pinaychannel.com/new/mediaplayer.swf','mpl','520','420','9');">

<div id="container">
Player
</div>
<div id="time">
Time
</div>
<div id="stateshow">
State
</div>

<button onclick="loadFile('ccvideo', {file:'rtmp://livefeed.pinaychannel.com/abs/live/stream&logo=http://www.pinaychannel.com/pinaylogo.png&skin=http://www.pinaychannel.com/new/stijl.swf&autostart=true&fullscreen=true', id:'video_file'}); return false;">Load Video</button>

</body>

</html>

@neoPhillip,

Is http://www.pinaychannel.com functional so I can test against it?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

<html lang="en">

  <head>

    <title>neoPhilip</title>

    <script type="text/javascript" src="http://www.pinaychannel.com/js/swfobject.js"></script>

    <script type="text/javascript">
      function gid(name)
      {
        return document.getElementById(name);
      };
    </script>

    <script type="text/javascript">
      //from bizreel 
      if(document.getElementById('selPageBody'))
      {
        var a = document.getElementById('selPageBody').getElementsByTagName('a');
        //var site_url = ;
        for(var i = 0; i < a.length; i++)
        { 
          clk = a[i].onclick + '';
          if((clk == 'null') || (clk == 'undefined') || (clk == ''))
          {
            a[i].onclick = function()
            {
              var hurl = this.href; 
              if(hurl.indexOf('http://www.pinaychannel.com/') < 0)
              {
                this.target = "_blank";
              }
            }
          }
        }
      }
    </script>

    <script type="text/javascript">
      var max_timer = 120;
      changeTimer();
      var dontUse = 0;
    </script>

    <script type="text/javascript">
      var vLoader       = 'loaderVideos';
      var homeUrl       = 'http://www.pinaychannel.com/action/viewvideo/3464/';
      var disPrevButton = 'disabledPrevButton';
      var disNextButton = 'disabledNextButton';
      var pars          = 'vLeft=&vFetch=';

      function moveVideoSetToLeft(buttonObj, pg)
      {
        if(pg == 'tag')  var pars = 'vTagLeft=&vTagFetch='; 
        if(pg == 'user') var pars = 'vUserLeft=&vUserFetch='; 
        if(pg == 'top')  var pars = 'vTopLeft=&vTopFetch='; 
        if(pg == 'resp') var pars = 'vRespLeft=&vRespFetch='; 

        if(buttonObj.className == disPrevButton)
        {
          return false;
        }
        videoSlider(pars, pg); 
      };

      function moveVideoSetToRight(buttonObj, pg)
      {
        //alert('RIGHT----'+pg);
        if(pg == 'tag')  var pars = 'vTagRight=&vTagFetch='; 
        if(pg == 'user') var pars = 'vUserRight=&vUserFetch='; 
        if(pg == 'top')  var pars = 'vTopRight=&vTopFetch='; 
        if(pg == 'resp') var pars = 'vRespRight=&vRespFetch='; 

        if(buttonObj.className == disNextButton)
        {
          return false;
        }
        videoSlider(pars, pg); 
      };

      function videoSlider(pars, pg)
      {
        if(pg == 'resp')
        {
          showDiv('loaderRespVideos'); 
          new Ajax.Request
          (
            homeUrl,
            {
              method:'post',
              parameters:pars + '&ajax_page=1&video_id=3464',
              onComplete:refreshVideoBlockResp
            }
          ); 
          return;
        }
        showDiv('loaderVideos');
        if(pg == 'tag')
        {
          new Ajax.Request
          (
            homeUrl,
            {
              method:'post',
              parameters:pars + '&ajax_page=1&video_id=3464&video_tags=LiveTV',
              onComplete:refreshVideoBlockTag
            }
          );
        }
        if(pg == 'user')
        {
          new Ajax.Request
          (
            homeUrl,
            {
              method:'post',
              parameters:pars + '&ajax_page=1&video_id=3464&user_id=1',
              onComplete:refreshVideoBlockUser
            }
          );
        }
        if(pg == 'top')
        {
          new Ajax.Request
          (
            homeUrl,
            {
              method:'post',
              parameters:pars + '&ajax_page=1&video_id=3464',
              onComplete:refreshVideoBlockTop
            }
          );
        }
      };

      refreshVideoBlockTag = function(resp)
      {
      //alert(resp.responseText);
      //gid('selRelatedContent').update(resp.responseText);
        gid('selRelatedContent').innerHTML = resp.responseText;
        hideDiv('loaderVideos');
      //gid('loaderVideos').display='none';
      };

      refreshVideoBlockTop = function(resp)
      {
      //alert(resp.responseText);
      //gid('selTopContent').innerHTML = '';
        gid('selTopContent').innerHTML = resp.responseText;
        hideDiv('loaderVideos');
      };

      refreshVideoBlockUser = function(resp)
      {
        gid('selUserContent').innerHTML = resp.responseText;
      //gid('selUserContent').update(resp.responseText);
        hideDiv('loaderVideos');
      };

      refreshVideoBlockResp = function(resp)
      {
        gid('selUserContentResp').innerHTML = resp.responseText;
      //gid('selUserContent').update(resp.responseText);
        hideDiv('loaderRespVideos');
      };
    </script>

    <script type='text/javascript'>
      function loadFile(swf, obj)
      {
        thisMovie(swf).loadFile(obj);
      };

      function thisMovie(movieName)
      {
        return document.getElementsByName(movieName)[0];
      };
    </script>

    <script type='text/javascript'>
      function createPlayer(pId)
      {
        if(pId == 'undefined')
        {
          pId = 'video_file';
        }
        var s1 = new SWFObject('http://www.pinaychannel.com/new/mediaplayer.swf', 'ccvideo', '520', '420', '9.0.124');
            s1.addParam('allowfullscreen',   'true');
            s1.addVariable('width',          '623');
            s1.addVariable('height',         '350');
            s1.addVariable('file',           'rtmp://livefeed.pinaychannel.com/abs/live/stream');
            s1.addVariable('id',              pId);
            s1.addVariable('logo',           'http://www.pinaychannel.com/pinaylogo.png');
          //s1.addvariable('skin',           'http://www.pinaychannel.com/new/stijl.swf');
            s1.addVariable('autostart',      'true');
            s1.addVariable('usefullscreen',  'true');
            s1.addVariable('enablejs',       'true');
            s1.addVariable('javascriptid',   'ccvideo');
            s1.write('container');
      };
    </script>

  </head>

  <body onload="createPlayer('video_file');">

    <div id="container">
      Player
    </div>
    <div id="time">
      Time
    </div>
    <div id="stateshow">
      State
    </div>

    <button onclick="loadFile('ccvideo', {file:'rtmp://livefeed.pinaychannel.com/abs/live/stream', id:'video_file'}); return false;">Load Video</button>

  </body>

</html>

That's the best that I can do without running some functional tests.

hi i tried the code and its not workin thanks for the effort you are a good man, yeah www.pinaychannel.com is working

http://www.pinaychannel.com/action/viewvideo/3464/Pinoy_TV/ thats the url

Your stream is here: rtmp://livefeed.pinaychannel.com/abs/live/stream but you also need a filename.

so.addVariable('streamer',         'rtmp://livefeed.pinaychannel.com/abs/live/stream');
so.addVariable('file',             <strong>'????????'</strong>);
so.addVariable('type',             'video');

Also, upgrade to the v4.1.60 plyaer from here: http://code.longtailvideo.com/trac/browser/trunk/as3/player.swf?format=raw

<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html lang="en-US" dir="ltr" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="application/xhtml+xml; charset=UTF-8" />
<meta http-equiv="content-Language" content="en-US" />
<meta name="keywords" content="LiveTV" />
<meta name="description" content="Pinoy TV" />
<meta name="Version" content="10590" />

<meta name="title" content="Pinoy TV" />
<link rel="image_src" href="http://www.pinaychannel.com/files/videos/thumbnails/51e6d6e679953c6T.jpg" />
<meta name="medium" content="video" />

<!-- Disable MSSmartTags -->
<meta name="MSSmartTagsPreventParsing" content="true" />

<!-- Disable IE6 image toolbar -->
<meta http-equiv="imagetoolbar" content="no" />
<link rel="stylesheet" type="text/css" href="http://www.pinaychannel.com/members/css/screen_blue.css" media="screen" title="Default" />
<link rel="stylesheet" type="text/css" href="http://www.pinaychannel.com/css/openbox.css" media="screen" />
<link rel="stylesheet" type="text/css" href="http://www.pinaychannel.com/css/container.css" media="screen" />
<link rel="stylesheet" href="http://www.pinaychannel.com/css/lightbox.css" media="screen,projection" type="text/css" />

<link rel="stylesheet" type="text/css" href="http://www.pinaychannel.com/css/print.css" media="print" />
<link rel="shortcut icon" href="http://www.pinaychannel.com/favicon.ico" type="image/x-icon" />
<!-- for link bar -->
<link rel="Home" href="http://www.pinaychannel.com/" title="Home page" />
<link rel="Index" href="http://www.pinaychannel.com/" title="Index" />
<link rel="search" href="#" title="Search this site" />
<link rel="contents" href="#" title="Site map" />

<script type="text/javascript">var siteUserId='0'; var siteUrl='http://www.pinaychannel.com/';var pageId='viewVideo';var status = new Object; </script>
<script type="text/javascript" src="http://www.pinaychannel.com/js/lib/cssQuery-p.js"></script>
<script type="text/javascript" src="http://www.pinaychannel.com/js/lib/behaviour.js"></script>
<script type="text/javascript" src="http://www.pinaychannel.com/js/script.js"></script>
<script type="text/javascript" src="http://www.pinaychannel.com/js/online.js"></script>
<script type="text/javascript" src="http://www.pinaychannel.com/js/lib/scriptaculous.js?load=effects"></script>

<script type="text/javascript" src="http://www.pinaychannel.com/css/highslide/highslide.js"></script>
<script type="text/javascript" src="http://www.pinaychannel.com/css/highslide/easing_equations.js"></script>

<script type="text/javascript" src="http://www.pinaychannel.com/js/lib/prototype.js"></script>

<script type="text/javascript">
hs.registerOverlay(
{
thumbnailId: null,
overlayId: 'controlbar',
position: 'top right',
hideOnMouseOut: true
}
);
hs.graphicsDir = 'http://www.pinaychannel.com/css/highslide/graphics/';

//hs.easing = 'easeOutBack';

//hs.Expander.prototype.onMouseOut = function (sender) {
//sender.close();
// };
hs.blockRightClick = true;
hs.minWidth = 200;
hs.padToMinWidth = true;
</script>

<script type="text/javascript">
function lunchboxOpen(lunchID) {
document.getElementById('lunch_' + lunchID).style.display = "block";
document.getElementById('clasp_' + lunchID).innerHTML="<a href=\"javascript:lunchboxClose('" + lunchID + "');\"><img src='http://www.pinaychannel.com/images/hd/img_" + lunchID + "_active.gif'></a>";
}
function lunchboxClose(lunchID) {
document.getElementById('lunch_' + lunchID).style.display = "none";
document.getElementById('clasp_' + lunchID).innerHTML="<a href=\"javascript:lunchboxOpen('" + lunchID + "');\"><img src='http://www.pinaychannel.com/images/hd/img_" + lunchID + ".gif'></a>";
}
</script>

<script type="text/javascript">
function Open(lunchID) {
document.getElementById('lunch_' + lunchID).style.display = "block";
document.getElementById('clasp_' + lunchID).innerHTML="<a href=\"javascript:Close('" + lunchID + "');\"><img src='http://www.pinaychannel.com/images/" + lunchID + ".png'></a>";
}
function Close(lunchID) {
document.getElementById('lunch_' + lunchID).style.display = "none";
document.getElementById('clasp_' + lunchID).innerHTML="<a href=\"javascript:Open('" + lunchID + "');\"><img src='http://www.pinaychannel.com/images/" + lunchID + "_active.png'></a>";
}
</script>

<script type="text/javascript">
function OpenDIV(lunchID) {
document.getElementById('lunch_' + lunchID).style.display = "block";
document.getElementById('clasp_' + lunchID).innerHTML="<a href=\"javascript:CloseDIV('" + lunchID + "');\">"+ lunchID + "</a>";
}
function CloseDIV(lunchID) {
document.getElementById('lunch_' + lunchID).style.display = "none";
document.getElementById('clasp_' + lunchID).innerHTML="<a href=\"javascript:OpenDIV('" + lunchID + "');\">" + lunchID + "</a>";
}
</script>

<script language="javascript">
var cookiename = "inRadio";

function storecookie(arg) {
var expiration = new Date((new Date()).getTime() + 31536000000);
var cookie = cookiename + '=' + arg;
cookie += '; expires=' + expiration.toGMTString();

document.cookie = cookie;
}

var cookiename2 = "inRadioStatus";

function storecookie2(arg) {
var expiration = new Date((new Date()).getTime() + 31536000000);
var cookie = cookiename2 + '=' + arg;
cookie += '; expires=' + expiration.toGMTString();

document.cookie = cookie;
}

function loadcookie() {
var allcookies = document.cookie;
if (allcookies == "") return false;

var start = allcookies.indexOf(cookiename + '=');
if (start == -1) return false;

start += cookiename.length + 1;

var end = allcookies.indexOf(';', start);
if (end == -1) end = allcookies.length;

var cookie = allcookies.substring(start, end);

return cookie;
}

function getCookie(c_name)
{
if (document.cookie.length>0)
{
c_start=document.cookie.indexOf(c_name + "=");
if (c_start!=-1)
{
c_start=c_start + c_name.length+1;
c_end=document.cookie.indexOf(";",c_start);
if (c_end==-1) c_end=document.cookie.length;
return unescape(document.cookie.substring(c_start,c_end));
}
}
return "";
}

function inRadioStatus() {
alert('Please lunch inRadio to use this feature');
}

function ask4inRadio() {

var status = getCookie('inRadioStatus');

if (status == 'stopped' || status == '') {
storecookie2('started');
document.url.submit();
alert(status);
} else {
alert(status);
storecookie2('stopped');
}
}

function killcookie() {
if (confirm("Do you really want to clear the cookie?")) {
var cookie;
cookie = cookiename + '=';
cookie += '; expires=Fri, 02-Jan-1970 00:00:00 GMT';
document.cookie = cookie;
}
}

</script>

<script type="text/javascript">
statusSettingUrl = 'http://www.pinaychannel.com/action/profile/settings/';
logoutUrl = 'http://www.pinaychannel.com/action/logout/';
function blockError(){return true;}
window.onerror = blockError;
</script>

<script type="text/javascript" charset="utf-8">
window.onload = function () {
if (!/*@cc_on!@*/0) return;

var all = document.getElementsByTagName('*'), i = all.length;
while (i--) {
// adding a class match just to show the difference
if (all[i].className.match(/fix/) && all[i].scrollWidth > all[i].offsetWidth) {
all[i].style['overflowY'] = 'hidden';
all[i].style['paddingBottom'] = '20px';
}
}
};
</script>

<script type="text/javascript" src="http://www.pinaychannel.com/js/memberStatus.js"></script>
<script type="text/javascript">
function changeAction(){
var obj = document.formCommonSearch;
var act_url = '';
if(obj.tags.value=='')
return false;
switch (obj.soption.value){
case 'photos':
act_url = 'http://www.pinaychannel.com/action/photolist/photonew/?tags=';
obj.action = act_url+obj.tags.value;
return true;
break;

case 'videos':
act_url = 'http://www.pinaychannel.com/action/videolist/videonew/?tags=';
obj.action = act_url+obj.tags.value;
return true;
break;

case 'articles':
act_url = 'http://www.pinaychannel.com/action/articlelist/articlenew/?tags=';
obj.action = act_url+obj.tags.value;
return true;
break;

case 'musics':
act_url = 'http://www.pinaychannel.com/action/musiclist/musicnew/?tags=';
obj.action = act_url+obj.tags.value;
return true;
break;

case 'games':
act_url = 'http://www.pinaychannel.com/action/gamelist/gamenew/?tags=';
obj.action = act_url+obj.tags.value;
return true;
break;

case 'members':
act_url = 'http://www.pinaychannel.com/action/memberslist/?tags=';
obj.action = act_url + obj.tags.value;
return true;

case 'groups':
act_url = 'http://www.pinaychannel.com/action/group/?tags=';
obj.action = act_url + obj.tags.value;
return true;

default:
return false;
break;
}
}
function changeActionSub(){
var obj = document.formCommonSearchSub;
var act_url = '';
if(obj.tagsSub.value=='')
return false;
switch (obj.soptionSub.value){
case 'photos':
act_url = 'http://www.pinaychannel.com/action/photolist/photonew/?tags=';
obj.action = act_url+obj.tagsSub.value;
return true;
break;

case 'videos':
act_url = 'http://www.pinaychannel.com/action/videolist/videonew/?tags=';
act_url = act_url+obj.tagsSub.value;
act_url = act_url+'&cid='+obj.catIdSub.value;
obj.action = act_url;
return true;
break;

case 'articles':
act_url = 'http://www.pinaychannel.com/action/articlelist/articlenew/?tags=';
obj.action = act_url+obj.tagsSub.value;
return true;
break;

case 'musics':
act_url = 'http://www.pinaychannel.com/action/musiclist/musicnew/?tags=';
obj.action = act_url+obj.tagsSub.value;
return true;
break;

case 'games':
act_url = 'http://www.pinaychannel.com/action/gamelist/gamenew/?tags=';
obj.action = act_url+obj.tagsSub.value;
return true;
break;

case 'members':
act_url = 'http://www.pinaychannel.com/action/memberslist/?tags=';
act_url = act_url + obj.tagsSub.value;
obj.action = act_url;
return true;

case 'groups':
act_url = 'http://www.pinaychannel.com/action/group/?tags=';
obj.action = act_url + obj.tagsSub.value;
return true;

default:
return false;
break;
}
}
</script>

<title>Pinoy TV - PinayChannel.com</title>
</head>
<body onLoad="logInUser();" onUnload="logOutUser();" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">

<script type="text/javascript">
onlineTimer = setInterval('logInUser()', 10000);
curStatus = '';
</script>
<div id="viewVideo" class="clsBodyContent">

<div id="selPageBody">
<div id="hideScreen" style="z-index: 100; display: none;" class="VeilStyle1c">&nbsp;</div>
<a href="#" id="alertHyperLink"></a>
<div id="selAlertbox" class="clsMsgAlert" style="display:none;position:absolute;">
<p id="selAlertMessage"></p>
<form name="formAlertBox" id="formAlertBox">

<input type="button" class="clsSubmitButton" name="selAlertOkButton" id="selAlertOkButton" value="Ok" onClick="return hideAllBlocks();" />
</form>
</div>
<!-- Accessibility Links -->
<div id="top">
<ul>
<li><a href="#main">Skip to main content</a></li>
<li><a href="#selSubHeader">Skip to Navigation Links</a></li>
<li><a href="#footer">Skip to Footer</a></li>

</ul>
</div>
<!-- Header -->
<div id="header">

<div class="clsTopHeader">

<table cellpadding="0" cellspacing="0">
<tr>
<td valign="middle" width="300" align="left" style="padding-left:35px;">
<div class="top-utils">

<a href="#" onClick="return hs.htmlExpand(this, { contentId: 'highslide-html-l', align: 'left', width: '305' } )"
class="highslide">Login</a> |

<div class="highslide-html-content" id="highslide-html-l">

<div align="center" class="highslide-body">

<div style="width:280px;border:1px solid #eeeeee;background-color:#f3f3f3;padding:10px;">
<!-- Content goes here -->
<form id="formIndexLogin" name="formIndexLogin" method="post" action="http://www.pinaychannel.com/action/login/">
<table cellpadding="2" cellspacing="0" width="280">
<tr>
<tr>
<td align="left">

<h1 style="font-size:16px;font-weight:bold;color:#999999;padding:0px;margin:0px;">Login</h1>

</td>
<td align="right">
<a>Help</a>
</td>
</tr>
<tr>

<td width="50%" align="right">
<b>Username</b>
</td>
<td align="left">
<div>
<input type="text" name="user_name" id="user_name" value="" size="17"/>
</div>
</td>

</tr>
<tr>
<td width="50%" align="right">
<b>Password</b>
</td>
<td align="left" align="left">
<div>
<input type="password" name="password" id="password" value="" size="17"/>

</div>
</td>
</tr>

<tr>
<td align="left"><input type="checkbox" name="remember" id="remember" value="1" /> <label for="remember">Remember me</label></td>

<td align="left"><input type="submit" name="login_submit" id="login_submit" value="Login" />
&nbsp;<button onClick="return hs.close(this)">Cancel</button>

</td>
</tr>
</table>
</form>
<hr>
<a href="http://www.pinaychannel.com/action/signup/">Register now</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/forgotpassword/">Forgot password?</a>
</div>

</div>
</div>

<a href="http://www.pinaychannel.com/action/signup/">
Join
</a>

<div id="artist" style="display:none;position:absolute;border:2px solid #333333;padding:10px;background-color:#ffffff;">
</div>

</div>
</td>
<td width="277" align="center">

<div style="height:33px;">
<form name="url" id="url" action="http://www.pinaychannel.com/action/inRadio/" method="post" action="get">
<input type="hidden" name="url" id="url" value="/action/viewvideo/3464/Pinoy_TV/">

<a onMouseOver="document.play.src='http://www.pinaychannel.com//player/img/play-hover.gif'" onMouseOut="document.play.src='http://www.pinaychannel.com//player/img/play.gif'" onClick="JavaScript:parent.frames['player'].sendEvent('playpause')""><img name="play" src="http://www.pinaychannel.com//player/img/play.gif" width="45" height="33" alt="Play"></a>
<a onMouseOver="document.prev.src='http://www.pinaychannel.com//player/img/prev-hover.gif'" onMouseOut="document.prev.src='http://www.pinaychannel.com//player/img/prev.gif'" onClick="JavaScript:parent.frames['player'].sendEvent('prev')""><img name="prev" src="http://www.pinaychannel.com//player/img/prev.gif" width="45" height="33" alt="Previous"></a>
<a onMouseOver="document.next.src='http://www.pinaychannel.com//player/img/next-hover.gif'" onMouseOut="document.next.src='http://www.pinaychannel.com//player/img/next.gif'" onClick="JavaScript:parent.frames['player'].sendEvent('next')""><img name="next" src="http://www.pinaychannel.com//player/img/next.gif" width="45" height="33" alt="Next"></a>
<input type="hidden" name="inRadioStatus" id="inRadioStatus" value="online">
<a onMouseOver="document.lunch.src='http://www.pinaychannel.com//player/img/lunch-hover.gif'" onMouseOut="document.lunch.src='http://www.pinaychannel.com//player/img/lunch.gif'" onClick="document.url.submit(); storecookie('online');""><img name="lunch" src="http://www.pinaychannel.com//player/img/lunch.gif" width="80" height="33" alt="Lunch inRadio"></a>

</form>

</div>

</td>

<td align="right" width="300" valign="middle">

<div class="top-utils">

<a class="clsActiveLink" href="http://www.pinaychannel.com/action/index/">Home</a> |

</div>

</td>
</tr>
<tr>
<td align="left" width="353" valign="middle">
<a href="http://www.pinaychannel.com/invite/index.php?url=http://www.pinaychannel.com&face=PinayChannel&image=null" onClick="return hs.htmlExpand(this, { objectType: 'iframe', preserveContent: true, align: 'center', height: 700, easing: 'linearTween', width: 550} )">
<img src="http://www.pinaychannel.com/images/invite.gif">
</a>
</td>
<td align="center" width="171" valign="middle">

<a href="http://www.pinaychannel.com/" title="Browse to homepage"><img style="*margin-bottom:20px;width:170px;height:72px;" src="http://www.pinaychannel.com/images/FJ-200.gif"></a>
</td>
<td align="right" width="353" valign="middle">
<a href="http://www.pinaychannel.com/members/action/videouploadpopup/"><img src="http://www.pinaychannel.com/images/upload.gif"></a>
</td>
</tr>
</table>
<center><!-- Begin: AdBrite -->
<script type="text/javascript">
var AdBrite_Title_Color = '2BA94F';
var AdBrite_Text_Color = 'FFFFCC';
var AdBrite_Background_Color = '000000';
var AdBrite_Border_Color = '000000';
var AdBrite_URL_Color = 'FFFFFF';
</script>
<span style="white-space:nowrap;"><script src="http://ads.adbrite.com/mb/text_group.php?sid=733243&zs=3732385f3930" type="text/javascript"></script><!--
--><a target="_top" href="http://www.adbrite.com/mb/commerce/purchase_form.php?opid=733243&afsid=1">"</a></span>
<!-- End: AdBrite --></center>

</div></div>

<div align="center" style="padding:0px;margin:0px;">

<a href="http://www.pinaychannel.com/members/action/myhome/"><img src="http://www.pinaychannel.com/images/menu/myhome.gif"></a>

<a href="http://www.pinaychannel.com/action/memberslist/"><img src="http://www.pinaychannel.com/images/menu/faces.gif"></a>

<a href="http://www.pinaychannel.com/action/photolist/home/"><img src="http://www.pinaychannel.com/images/menu/photo.gif"></a>

<a href="http://www.pinaychannel.com/action/videolist/videonew/"><img src="http://www.pinaychannel.com/images/menu/video-active.gif"></a>

<a href="http://www.pinaychannel.com/action/musiclist/home/"><img src="http://www.pinaychannel.com/images/menu/music.gif"></a>

<a href="http://forums.pinaychannel.com/index.php"><img src="http://www.pinaychannel.com/images/menu/forum.gif"></a>

<a href="http://www.pinaychannel.com/action/static/live/"><img src="http://www.pinaychannel.com/images/menu/live.gif"></a>

<a href="http://www.pinaychannel.com/action/static/webcam/"<img src="http://www.pinaychannel.com/images/menu/blog.gif"></a>

</div>
<div class='box'>
<div class='boxtop'><div></div></div>
<div class='boxcontent'>
<!-- Content goes here -->

<center>
<script language="javascript">
function changeSearchAction()
{
var type='video';
tag_value=$('tags_footer').value;
if(tag_value!='')
location = 'http://www.pinaychannel.com//searchList.php?search_type='+type+'&tags='+tag_value;
}
initShowHideDivs()
initUserMenus();
</script>

<form name="searchFooterForm" onsubmit="if(trim($('tags_footer').value)!='') return true; else return false;" action="http://www.pinaychannel.com/action/searchlist/" method="get" action="post">
<input type="hidden" name="search_type" value="video" />

<table id="tbl18" border="0" cellspacing="0" cellpadding="0" class="r1">
<tr>
<td class="l"></td>
<td class="c" valign="middle">
<input type="text" onFocus="tbl18.className='r2';" onBlur="tbl18.className='r1';" style="width: 300px;" class="input-1" size="50" name="tags" id="tags_footer" value="" tabindex="100" /><input type="image" src="http://www.pinaychannel.com/images/search.gif" style="vertical-align:middle;padding-left:5px;" name="commonSearchSubmit" id="commonSearchSubmit" value="Search" tabindex="110" />
</td>
<td class="r"></td>
</tr>
</table>

</form></center>
<center><div align="center" style="font-size:11px; color:rgb(102,102,102); background-color:rgb(238,238,238); margin-top:10px; padding:2px;">

<script type="text/javascript"><!--
google_ad_client = "pub-4498148188065292";
/* 728x90, created 6/9/08 */
google_ad_slot = "7103991128";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>

<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<div align="center" style="padding:5px; border-width:1px; border-color:rgb(238,238,238); border-style:solid;">
</center>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-3600190-3");
pageTracker._initData();
pageTracker._trackPageview();
</script>
<!-- Main -->
<div id="main2" class="clsMain clsMainNoBanner ">
<!-- Header ends -->

<script language="javascript" type="text/javascript" src="http://www.pinaychannel.com/js/functions.js"></script>
<script language="javascript" type="text/javascript" src="http://www.pinaychannel.com/js/AG_ajax_html.js"></script>
<script language="javascript" type="text/javascript" src="http://www.pinaychannel.com/js/viewVideo.js"></script>
<script language="javascript" type="text/javascript">
var site_url = 'http://www.pinaychannel.com/';
var enabled_edit_fields = new Array();

var block_arr = new Array('selEditPhotoComments',
'clsDownloadSectionThis','clsVideoRenders', 'selVideoResposeLinks', 'selMsgConfirm',
'selUploadingDialog',
'selMsgConfirm', 'selUploadingDialog', 'selEditPhotoComments');
var viewphoto_codes_to_display = "Codes to display this video from your website";
var viewphoto_session_expired = "YOUR SESSION HAS EXPIRED, Please Login Again!";
var viewphoto_close_code = "Close Code";
var total_images = "5";
var replace_url = 'http://www.pinaychannel.com/action/login/';
var minimum_counts = 10;
var deleteConfirmation = "Are you sure you want to delete";
var download_count = 0;
var curr_video_id='';
var curr_sel_video_id='';
var currUrl = 'http://www.pinaychannel.com/action/viewvideo/3464/';

var curr_side_bar_pg='tag';
var popupWindow = function(){
var additional = '';
if(arguments[1])
additional += ',width='+arguments[1];

if(arguments[2])
additional += ',height='+arguments[2];

window.open (arguments[0], "","status=0,toolbar=0,resizable=0,scrollbars=1"+additional);
return false;
}

var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}

function setClass(li_id, li_class){
document.getElementById(li_id).setAttribute('className',li_class);
document.getElementById(li_id).setAttribute('class',li_class);
}
function showDiv(element){
if(obj = document.getElementById(element))
obj.style.display = '';
}
function hideDiv(element){
if(obj = document.getElementById(element))
obj.style.display = 'none';
}

function updateVideosQuickLinksCount(video_id, pg)
{
var url = 'http://www.pinaychannel.com/videoUpdateQuickLinks.php';
var pars = '?video_id='+video_id;
var path=url+pars;
curr_side_bar_pg=pg;
curr_video_id=video_id;
new AG_ajax(path,'getQuickLinkCode');
return false;
refreshSideBarLinks(video_id, 'deactivate');
}

function getQuickLinkCode(data)
{
if(obj = document.getElementById('quick_link_tag_'+curr_video_id))
obj.innerHTML = '<a onclick="deleteVideoQuickLinks(\''+curr_video_id+'\')"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /> <span style="color:#ffffff;font-weight:bold;text-decoration:none;">remove from quicklist</span></a>';
if(obj = document.getElementById('quick_link_user_'+curr_video_id))
obj.innerHTML = '<a onclick="deleteVideoQuickLinks(\''+curr_video_id+'\')"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /> <span style="color:#ffffff;font-weight:bold;text-decoration:none;">remove from quicklist</span></a>';
if(obj = document.getElementById('quick_link_top_'+curr_video_id))
obj.innerHTML = '<a onclick="deleteVideoQuickLinks(\''+curr_video_id+'\')"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /> <span style="color:#ffffff;font-weight:bold;text-decoration:none;">remove from quicklist</span></a>';

if($('selQuickList'))
addBlocksForQuickLinks();
else
moreVideosQuickList();
}

function deleteVideoQuickLinks(video_id)
{
var url = 'http://www.pinaychannel.com/videoUpdateQuickLinks.php';
var pars = '?video_id='+video_id+'&remove_it';
var path=url+pars;
curr_sel_video_id=video_id;
new AG_ajax(path,'hideQuickLinkCode');
refreshSideBarLinks(video_id, 'activate');
}

function hideQuickLinkCode(data)
{
//alert('quick_list_selected_'+curr_sel_video_id);
hideDiv('quick_list_selected_'+curr_sel_video_id);
removeElement('quick_list_selected_'+curr_sel_video_id);
}

function removeElement(divNum)
{
var d = document.getElementById('selQuickList');
var olddiv = document.getElementById(divNum);
d.removeChild(olddiv);
}

function addBlocksForQuickLinks()
{
new Ajax.Request(currUrl, {method:'post',parameters:'&ajax_page=1&show_qucik_link_text_id='+curr_video_id, onComplete:refreshQucikLinkBlockTag});
}

function refreshQucikLinkBlockTag(resp)
{
$('selQuickList').innerHTML +=resp.responseText;
}

function moreVideosQuickList()
{
new Ajax.Request(currUrl, {method:'post',parameters:'&ajax_page=1&show_complete_quick_list=1', onComplete:refreshQucikLinkBlockTagAll});
}

function refreshQucikLinkBlockTagAll(resp)
{
$('selVideoQuickLinks').innerHTML=resp.responseText;
new AG_ajax(path,'hideQuickLinkCode');
}

function refreshSideBarLinks(video_id, action)
{
if(action=='activate')
{
if(obj = document.getElementById('quick_link_tag_'+video_id))
obj.innerHTML ='<a onclick="updateVideosQuickLinksCount(\''+video_id+'\',\'tag\')"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo_added.gif" /> <span style="color:#333333;font-weight:bold;text-decoration:none;">add to quicklist</span></a>';
if(obj = document.getElementById('quick_link_user_'+video_id))
obj.innerHTML ='<a onclick="updateVideosQuickLinksCount(\''+video_id+'\',\'user\')"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo_added.gif" /> <span style="color:#333333;font-weight:bold;text-decoration:none;">add to quicklist</span></a>';
if(obj = document.getElementById('quick_link_top_'+video_id))
obj.innerHTML ='<a onclick="updateVideosQuickLinksCount(\''+video_id+'\',\'top\')"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo_added.gif" /> <span style="color:#333333;font-weight:bold;text-decoration:none;">add to quicklist</span></a>';
}
else if(action=='deactivate')
{

if(obj = document.getElementById('quick_link_tag_'+video_id))
obj.innerHTML = '<a href=""><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /> <span style="color:#ffffff;font-weight:bold;text-decoration:none;">remove from quicklist</span></a>';
if(obj = document.getElementById('quick_link_user_'+video_id))
obj.innerHTML = '<a href=""><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /> <span style="color:#ffffff;font-weight:bold;text-decoration:none;">remove from quicklist</span></a>';
if(obj = document.getElementById('quick_link_top_'+video_id))
obj.innerHTML = '<a href=""><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /> <span style="color:#ffffff;font-weight:bold;text-decoration:none;">remove from quicklist</span></a>';
}
}

function toggleOnViewClearQuickList(obj)
{
var url = 'http://www.pinaychannel.com/videoUpdateQuickLinks.php';
if(obj.checked)
var pars = '?clear_on_view=1';
else
var pars = '?clear_on_view=0';
var path=url+pars;
new AG_ajax(path,'setToggleQuickList');
}

function clearQuickLinks()
{
var url = 'http://www.pinaychannel.com/videoUpdateQuickLinks.php';
var pars = '?clear_list=1';
var path=url+pars;
//alert(path);
new AG_ajax(path,'setQuickClearList');
}

function setQuickClearList(resp)
{
$('selVideoQuickLinks').innerHTML='';
}

function setToggleQuickList(resp)
{
return true;
}

function postVideoResponse()
{
var video_resp_url='http://www.pinaychannel.com/members/videoResponsePopUp.php?video_id=3464';
var pars = 'ajax_page=1';
var path=video_resp_url+pars;
//new AG_ajax(path,'setVideoRespose');
new Ajax.Request(video_resp_url, {method:'post',parameters:'&ajax_page=1', onComplete:setVideoRespose});
}

function setVideoRespose(resp)
{
$('selVideoResposeLinks').innerHTML=resp.responseText;
ConfirmationBlock('anchor_video_block','selVideoResposeLinks',-300,-70);
}

var ConfirmationBlock = function(){
var obj, inc, form_field;
hideAllBlocks();

var place = arguments[0];
var block = arguments[1];
var add_left_position = arguments[2];
var add_top_position = arguments[3];
if(fromObj = $(block))
changePosition(fromObj, $(place), add_top_position, add_left_position);
return false;
}
var vLoader_res = 'loaderVideos_res';
var homeUrl_res = 'http://www.pinaychannel.com/videoResponsePopUp.php?video_id=3464'
var pars= 'vLeft=&vFetch=';
var curr_slide_pg='';

function moveVideoSetToLeft_res(buttonObj, pg)
{
if(pg=='tag')
var pars= 'vTagLeft_res=&vTagFetch_res=';
if(pg=='user')
var pars= 'vUserLeft_res=&vUserFetch_res=';
if(pg=='top')
var pars= 'vTopLeft_res=&vTopFetch_res=';
if(pg=='resp')
var pars= 'vRespLeft=&vRespFetch_res=';

if(buttonObj.className ==disPrevButton)
{
return false;
}
videoSlider_res(pars, pg);
}
function moveVideoSetToRight_res(buttonObj, pg){

//alert('RIGHT----'+pg);
if(pg=='tag')
var pars= 'vTagRight_res=&vTagFetch_res=';
if(pg=='user')
var pars= 'vUserRight_res=&vUserFetch_res=';
if(pg=='top')
var pars= 'vTopRight_res=&vTopFetch_res=';
if(pg=='resp')
var pars= 'vRespRight=&vRespFetch_res=';

if(buttonObj.className ==disNextButton){
return false;
}
videoSlider_res(pars, pg);
}

function videoSlideShow_res(video_id, pg)
{
/*var a= new Ajax.Updater('slideShowBlock', homeUrl_res,
{
method:'post',
parameters:'?ajax_page=1&process_slide=1&video_id='+video_id,
asynchronous:true,
evalScripts:true,
onComplete: slideShowProcess_res
});
alert($('slideShowBlock').innerHTML);
return;*/

//ConfirmationBlock('anchor','slideShowBlock',300,200);
curr_slide_pg=pg;
new Ajax.Request(homeUrl_res, {method:'post',parameters:'ajax_page=1&process_slide=1&video_id='+video_id, onComplete:slideShowProcess_res});
return;
}

function slideShowProcess_res(resp)
{
$('slideShowBlock_'+curr_slide_pg).innerHTML=resp.responseText;
//ConfirmationBlock_res('slideShowBlock_anchor','slideShowBlock',-300,-200);
}

function videoSlider_res(pars, pg)
{
if(pg=='resp')
{
showDiv('loaderRespVideos');
new Ajax.Request(homeUrl_res, {method:'post',parameters:pars+'&ajax_page=1&video_id=3464', onComplete:refreshVideoBlockResp_res});
return;
}
showDiv('loaderVideos_res');
if(pg=='tag')
new Ajax.Request(homeUrl_res, {method:'post',parameters:pars+'&ajax_page=1&video_id=3464&video_tags=LiveTV', onComplete:refreshVideoBlockTag_res});
if(pg=='user')
new Ajax.Request(homeUrl_res, {method:'post',parameters:pars+'&ajax_page=1&video_id=3464&user_id=1', onComplete:refreshVideoBlockUser_res});
if(pg=='top')
new Ajax.Request(homeUrl_res, {method:'post',parameters:pars+'&ajax_page=1&video_id=3464', onComplete:refreshVideoBlockTop_res});
}

refreshVideoBlockTag_res = function(resp)
{

//alert(resp.responseText);
//$('selRelatedContent_res').update(resp.responseText);
$('selRelatedContent_res').innerHTML=resp.responseText;
hideDiv('loaderVideos_res');
//$('loaderVideos_res').display='none';
}

refreshVideoBlockTop_res = function(resp)
{
//alert(resp.responseText);
//$('selTopContent_res').innerHTML='';
$('selTopContent_res').innerHTML=resp.responseText;
hideDiv('loaderVideos_res');
}
refreshVideoBlockUser_res = function(resp)
{
$('selUserContent_res').innerHTML=resp.responseText;
//$('selUserContent_res').update(resp.responseText);
hideDiv('loaderVideos_res');
}

refreshVideoBlockResp_res = function(resp)
{
$('selUserContent_resResp').innerHTML=resp.responseText;
//$('selUserContent_res').update(resp.responseText);
hideDiv('loaderRespVideos');
}

//Display confirmation Block
//place, block, add_top_position, add_left_position --- optional
var ConfirmationBlock_res = function(){
var obj, inc, form_field;
hideAllBlocks();

var place = arguments[0];
var block = arguments[1];
var add_left_position = arguments[2];
var add_top_position = arguments[3];
if(fromObj = $(block))
changePosition(fromObj, $(place), add_top_position, add_left_position);
return false;
}
</script>
<div id="selViewVideo">
<div id="selLeftNavigation">
<table summary="table" class="clsPostCommentTable" id="selPreviewTable">
</table>
<div id="selViewVideoFrm">

<h1 style="font-size:22px;color:#999999">Pinoy TV</h1>
<table summary="table" id="selVideoTable">
<tr>
<td id="selVideoPlayerCell">
<script type="text/javascript"><!--
google_ad_client = "pub-4498148188065292";
/* 468x15, created 6/10/08 */
google_ad_slot = "3244908164";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>

<script type="text/javascript"><!--
google_ad_client = "pub-4498148188065292";
/* 468x15, created 6/10/08 */
google_ad_slot = "3244908164";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>

<script type="text/javascript"><!--
google_ad_client = "pub-4498148188065292";
/* 468x15, created 6/10/08 */
google_ad_slot = "3244908164";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<div id="mediaflv">This text will be replaced</div>
<script type="text/javascript" src="http://www.pinaychannel.com/js/swfobject.js"></script>
<script type="text/javascript">
var so = new SWFObject('http://www.pinaychannel.com/new/mediaplayer.swf','mpl','520','420','9');
so.addParam('allowscriptaccess','always');
so.addParam('allowfullscreen','true');
so.addParam('flashvars','file=rtmp://livefeed.pinaychannel.com/abs/live/stream&logo=http://www.pinaychannel.com/pinaylogo.png&skin=http://www.pinaychannel.com/new/stijl.swf&autostart=t...');
so.write('mediaflv');
</script>

<p> Backup Live Feed </p>

<div id="flv">This text will be replaced</div>

<script type="text/javascript" src="http://www.pinaychannel.com/js/swfobject.js"></script>
<script type="text/javascript">
var so = new SWFObject('http://www.pinaychannel.com/new/mediaplayer.swf','mpl','520','420','9');
so.addParam('allowscriptaccess','always');
so.addParam('allowfullscreen','true');
so.addParam('flashvars','file=rtmp://stream.pinaychannel.com/pinoylivetv/stream&logo=http://www.pinaychannel.com/pinaylogo.png&skin=http://www.pinaychannel.com/new/stijl.swf&autostart=f...');
so.write('flv');
</script>

<script type="text/javascript"><!--
google_ad_client = "pub-4498148188065292";
/* 468x60, created 6/4/08 */
google_ad_slot = "4205853733";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<div class="vvlinks" style="width:454px;*width:468px;padding:7px;">

<span id="clasp_Share" class="clasp"><a onClick="OpenDIV('Share');">Share</a></span> |

<a href="http://www.pinaychannel.com/members/action/viewvideo/3464/Pinoy_TV/">Report</a> |
<!--<p><a href="#">blog video</a></p>-->

<a href="http://www.pinaychannel.com/members/action/viewvideo/3464/Pinoy_TV/">Favorites</a> |

<span id="clasp_Download" class="clasp"><a onClick="OpenDIV('Download');">Download</a></span>

</div>
</div>

</div>
<div class='boxbottom-black'>
<div></div>
</div>

</div>

<b>Having Video Problems? We recommend to use FireFox browsers</b> <a href="http://getfirefox.com/" title="Get Firefox - The Browser, Reloaded.">
<img src="http://www.mozilla.org/products/firefox/buttons/getfirefox_small.png"

<div id="selEditPhotoComments" class="clsConfirmPopup" style="display:none;position:absolute;"></div>

<!-- Download Block Start -->
<div style="display:none;border:1px solid #cccccc;border-bottom:0px;border-top:0px;background-color:#f3f3f3" id="lunch_Download">
<div style="padding:15px;">
<h1 style="font-size:20px;">Download this video</h1>
<hr />

Please <a href="http://www.pinaychannel.com/action/login/">Login</a> or <a href="http://www.pinaychannel.com/action/signup/">Register</a> to download this video

</div>
<div style="padding:5px;background-color:#cccccc;color:#555555;font-weight:bold;text-align:right;">
<span id="clasp_Download" class="clasp"><a onClick="CloseDIV('Download');">CLOSE</a></span>
</div>
</div>
<!-- Donload Block End -->

<!-- Blog Post Start-->
<div style="display:none;border:1px solid #cccccc;border-bottom:0px;border-top:0px;background-color:#f3f3f3" id="lunch_Share">
<div style="padding:15px;">
<h1 style="font-size:20px;">Share this video</h1>
<hr />
</div>
<div style="padding:5px;background-color:#cccccc;color:#555555;font-weight:bold;text-align:right;">

<span id="clasp_Share" class="clasp"><a onClick="CloseDIV('Share');">CLOSE</a></span>
</div>
</div>
<!-- Blog Post End-->

<table cellpadding="0" cellspacing="20">
<tr>
<td align="center" valign="middle">
<p style="font-size:22px;color:#555555;font-weight:bold;padding:0px;marging:0px;">Views: 246657</p>
</td>
<td align="center" valign="middle">

<a class="clsLogin" href="http://www.pinaychannel.com/action/login/">login</a>&nbsp;to rate
<div id="selRatingVideo">
<img src="http://www.pinaychannel.com/images/icon-rate.gif" />

<img src="http://www.pinaychannel.com/images/icon-rate.gif" />
<img src="http://www.pinaychannel.com/images/icon-rate.gif" />
<img src="http://www.pinaychannel.com/images/icon-rate.gif" />
<img src="http://www.pinaychannel.com/images/icon-rate.gif" />
4 rating </div>
</td>
</tr>
</table>
"Absolutely no copyright infringement is intended. All images, audio, and video clips are the sole property of their respective owners. This is only clipped for entertainment"

<div style="text-align:center;padding:5px;border-top:1px solid #CCCCCC;border-bottom:1px solid #CCCCCC">
<b>Comments: </b>157&nbsp;&nbsp;&nbsp;&nbsp;
<b>Favorited: </b>1&nbsp;&nbsp;&nbsp;&nbsp;

<span id="clasp_Links" style="font-weight:bold" class="clasp"><a onClick="OpenDIV('Links');">Links: </a></span>0</div>
<!-- Begin: AdBrite -->
<center><script type="text/javascript">
var AdBrite_Title_Color = '000000';
var AdBrite_Text_Color = '000000';
var AdBrite_Background_Color = 'FFFFFF';
var AdBrite_Border_Color = 'CCCCCC';
var AdBrite_URL_Color = '008000';
</script>
<script src="http://ads.adbrite.com/mb/text_group.php?sid=769244&zs=3330305f323530" type="text/javascript"></script>
<div><a target="_top" href="http://www.adbrite.com/mb/commerce/purchase_form.php?opid=769244&afsid=1" style="font-weight:bold;font-family:Arial;font-size:13px;">Your Ad Here</a></div>
</center>
<!-- End: AdBrite -->
<div class='box-10' id="lunch_Links" style="display:none;">
<table>
<tr>

<th><h4>Sites Linking to This Video:</h4></th>
</tr>
<td><ul>
<li> <span>No records found</span> </li>
</ul></td>
</tr>
<tr>

<td><span>
<input type="button" onClick="CloseDIV('Links')" name="cancel_submit" value="Cancel" />
</span> </td>
</tr>
</table>
</div>

<!--end of rounded corners-->
</div>
<script language="javascript">
var enabled_edit_fields_time = new Array();
var enabled_edit_fields_comment = new Array('');

</script>
<div id="selHeadingPostComment">
<div id="selCommentBlockHeading">
<h2>Comments &amp; Responses</h2>
</div>
</div>
<div id="selUserContentRespHeading">
<div class="clsHeadingPostComment">

<div class="clsCommentBlockHeading">
<h3>Video Responses</h3>
</div>
<div class="clsPostCommentHeading">
<a href="http://www.pinaychannel.com/members/action/viewvideo/3464/">Post Video Responses</a>
</div>
</div>
<div style="display:none;position:absolute;" id="selVideoResposeLinks"></div>

<div id="slideShowBlock_anchor"></div>
<span id="loaderRespVideos" style="display:none"><img src="http://www.pinaychannel.com/images/foxLoader.gif" alt="" title="" id="" /></span> </div>
<div id="selUserContentResp">
<div class="selVideoDisp">
<table class="clsNoVideo">
<tr>
<td><p>No videos found</p></td>
</tr>

</table>
</div>
</div>
<div id="selCommentBlock">
<div class="clsHeadingPostComment">
<div class="clsCommentBlockHeading">
<h3>Text Comments</h3>
</div>
<div class="clsPostCommentHeading">

<span id="selViewPostComment" class="clsViewPostComment"><a href="http://www.pinaychannel.com/members/action/viewvideo/3464/Pinoy_TV/">Post Comment</a></span>
</div>
</div>
<!--</h2>-->

<script language="javascript">
var captcha = '';
var comment_approval = 0</script>

<div id="selAddComments"></div>
<!--<div id="selHeadingPostComment">
<div id="selCommentBlockHeading">
<h2>Text Comments</h2>
</div>
<div id="selPostComment">
<p><a href="#">post comment</a></p>
</div>
</div>-->
<table class="clsEmptyTable">
<tr>

<td> <div class="clsNormalCommentTop">
<table summary="table" id="selVideoCommentTable" class="clsCommentDownArrow">

<tr class="clsNotEditable" id="cmd2080">
<td class="clsHomeDispContents clsCommentAuthor"><p id="selMemberName"> <a href="http://www.pinaychannel.com/Gildoks1/"> <img src="http://www.pinaychannel.com/images/noImage_T.jpg" alt="Gildoks1" title="Gildoks1" width="99" /></a> </p></td>
<td><div class="clsCommentDiv">
<p id="selEditCommentTxt_2080">maraming salamat po sa inyo GOD BLESS<br>po9..</p>

<p id="selEditComments_2080"></p>
<p class="clsCommentsReplySection"><span id="selViewPostComment_2080" class="clsViewPostComment"><a href="http://www.pinaychannel.com/members/action/viewvideo/3464/Pinoy_TV/">Reply...</a></span></p>
</div></td>
</tr>
<tr class="clsCommentUserDetails">
<td colspan="2" class="clsCommentDateCell"><div class="clsCommentUser">
<p><a href="http://www.pinaychannel.com/Gildoks1/">Gildoks1</a></p>
<p class="clsCommentedDate">(14 hours ago)</p>

</div></td>
</tr>
<tr id="cmd2080_1">
<td>&nbsp;</td>
</tr>
<tr id="cmdEmptyRow2080">
<td colspan="2" id="selVideoCommentSeparator">&nbsp;</td>
</tr>
</table>

</div>
<div class="clsNormalCommentTop">
<table summary="table" id="selVideoCommentTable" class="clsCommentDownArrow">

<tr class="clsNotEditable" id="cmd2078">
<td class="clsHomeDispContents clsCommentAuthor"><p id="selMemberName"> <a href="http://www.pinaychannel.com/Laonlaan/"> <img src="http://www.pinaychannel.com/images/noImage_T.jpg" alt="Laonlaan" title="Laonlaan" width="99" /></a> </p></td>
<td><div class="clsCommentDiv">
<p id="selEditCommentTxt_2078">admin tnx poh ulit see again nxt tym...</p>

<p id="selEditComments_2078"></p>
<p class="clsCommentsReplySection"><span id="selViewPostComment_2078" class="clsViewPostComment"><a href="http://www.pinaychannel.com/members/action/viewvideo/3464/Pinoy_TV/">Reply...</a></span></p>
</div></td>
</tr>
<tr class="clsCommentUserDetails">
<td colspan="2" class="clsCommentDateCell"><div class="clsCommentUser">
<p><a href="http://www.pinaychannel.com/Laonlaan/">Laonlaan</a></p>
<p class="clsCommentedDate">(15 hours ago)</p>

</div></td>
</tr>
<tr id="cmd2078_1">
<td>&nbsp;</td>
</tr>
<tr id="cmdEmptyRow2078">
<td colspan="2" id="selVideoCommentSeparator">&nbsp;</td>
</tr>
</table>

</div>
<div class="clsNormalCommentTop">
<table summary="table" id="selVideoCommentTable" class="clsCommentDownArrow">

<tr class="clsNotEditable" id="cmd2077">
<td class="clsHomeDispContents clsCommentAuthor"><p id="selMemberName"> <a href="http://www.pinaychannel.com/Laonlaan/"> <img src="http://www.pinaychannel.com/images/noImage_T.jpg" alt="Laonlaan" title="Laonlaan" width="99" /></a> </p></td>
<td><div class="clsCommentDiv">
<p id="selEditCommentTxt_2077">salamat ng marami,mabuhay poh kau at ang<br>bansang pilipinas...god speed..</p>

<p id="selEditComments_2077"></p>
<p class="clsCommentsReplySection"><span id="selViewPostComment_2077" class="clsViewPostComment"><a href="http://www.pinaychannel.com/members/action/viewvideo/3464/Pinoy_TV/">Reply...</a></span></p>
</div></td>
</tr>
<tr class="clsCommentUserDetails">
<td colspan="2" class="clsCommentDateCell"><div class="clsCommentUser">
<p><a href="http://www.pinaychannel.com/Laonlaan/">Laonlaan</a></p>
<p class="clsCommentedDate">(16 hours ago)</p>

</div></td>
</tr>
<tr id="cmd2077_1">
<td>&nbsp;</td>
</tr>
<tr id="cmdEmptyRow2077">
<td colspan="2" id="selVideoCommentSeparator">&nbsp;</td>
</tr>
</table>

</div>
<div class="clsNormalCommentTop">
<table summary="table" id="selVideoCommentTable" class="clsCommentDownArrow">

<tr class="clsNotEditable" id="cmd2072">
<td class="clsHomeDispContents clsCommentAuthor"><p id="selMemberName"> <a href="http://www.pinaychannel.com/Reddaren/"> <img src="http://www.pinaychannel.com/images/noImage_T.jpg" alt="Reddaren" title="Reddaren" width="99" /></a> </p></td>
<td><div class="clsCommentDiv">
<p id="selEditCommentTxt_2072">Maraming salamat po sa inyo.Mabuhay po<br>ang ..PINAY CHANNEL.Thanks a lot<br>..ADMIN..god bless po sa inyo.</p>

<p id="selEditComments_2072"></p>
<p class="clsCommentsReplySection"><span id="selViewPostComment_2072" class="clsViewPostComment"><a href="http://www.pinaychannel.com/members/action/viewvideo/3464/Pinoy_TV/">Reply...</a></span></p>
</div></td>
</tr>
<tr class="clsCommentUserDetails">
<td colspan="2" class="clsCommentDateCell"><div class="clsCommentUser">
<p><a href="http://www.pinaychannel.com/Reddaren/">Reddaren</a></p>
<p class="clsCommentedDate">(17 hours ago)</p>

</div></td>
</tr>
<tr id="cmd2072_1">
<td>&nbsp;</td>
</tr>
<tr id="cmdEmptyRow2072">
<td colspan="2" id="selVideoCommentSeparator">&nbsp;</td>
</tr>
</table>

</div>
<div class="clsNormalCommentTop">
<table summary="table" id="selVideoCommentTable" class="clsCommentDownArrow">

<tr class="clsNotEditable" id="cmd2065">
<td class="clsHomeDispContents clsCommentAuthor"><p id="selMemberName"> <a href="http://www.pinaychannel.com/Medyas/"> <img src="http://www.pinaychannel.com/images/noImage_T.jpg" alt="Medyas" title="Medyas" width="99" /></a> </p></td>
<td><div class="clsCommentDiv">
<p id="selEditCommentTxt_2065">i mean bakit wala na new filipino movies<br>lately?gaya ng caregiver?<br />

<br /></p>
<p id="selEditComments_2065"></p>
<p class="clsCommentsReplySection"><span id="selViewPostComment_2065" class="clsViewPostComment"><a href="http://www.pinaychannel.com/members/action/viewvideo/3464/Pinoy_TV/">Reply...</a></span></p>
</div></td>
</tr>
<tr class="clsCommentUserDetails">
<td colspan="2" class="clsCommentDateCell"><div class="clsCommentUser">
<p><a href="http://www.pinaychannel.com/Medyas/">Medyas</a></p>

<p class="clsCommentedDate">(20 hours ago)</p>
</div></td>
</tr>
<tr id="cmd2065_1">
<td>&nbsp;</td>
</tr>
<tr id="cmdEmptyRow2065">
<td colspan="2" id="selVideoCommentSeparator">&nbsp;</td>

</tr>
</table>
</div>
<div class="clsNormalCommentTop">
<table summary="table" id="selVideoCommentTable" class="clsCommentDownArrow">

<tr class="clsNotEditable" id="cmd2064">
<td class="clsHomeDispContents clsCommentAuthor"><p id="selMemberName"> <a href="http://www.pinaychannel.com/Medyas/"> <img src="http://www.pinaychannel.com/images/noImage_T.jpg" alt="Medyas" title="Medyas" width="99" /></a> </p></td>

<td><div class="clsCommentDiv">
<p id="selEditCommentTxt_2064">bakit hindi nawala yong mga new movies<br>gaya ng caregiver,monster mom a very<br>special love n etc?<br />
<br /></p>
<p id="selEditComments_2064"></p>
<p class="clsCommentsReplySection"><span id="selViewPostComment_2064" class="clsViewPostComment"><a href="http://www.pinaychannel.com/members/action/viewvideo/3464/Pinoy_TV/">Reply...</a></span></p>
</div></td>
</tr>

<tr class="clsCommentUserDetails">
<td colspan="2" class="clsCommentDateCell"><div class="clsCommentUser">
<p><a href="http://www.pinaychannel.com/Medyas/">Medyas</a></p>
<p class="clsCommentedDate">(20 hours ago)</p>
</div></td>
</tr>
<tr id="cmd2064_1">
<td>&nbsp;</td>

</tr>
<tr id="cmdEmptyRow2064">
<td colspan="2" id="selVideoCommentSeparator">&nbsp;</td>
</tr>
</table>
</div>
<div class="clsNormalCommentTop">
<table summary="table" id="selVideoCommentTable" class="clsCommentDownArrow">

<tr class="clsNotEditable" id="cmd2063">

<td class="clsHomeDispContents clsCommentAuthor"><p id="selMemberName"> <a href="http://www.pinaychannel.com/Medyas/"> <img src="http://www.pinaychannel.com/images/noImage_T.jpg" alt="Medyas" title="Medyas" width="99" /></a> </p></td>
<td><div class="clsCommentDiv">
<p id="selEditCommentTxt_2063">bakit hindi nawala yong mga new movies<br>gaya ng caregiver,monster mom a very<br>special love n etc?<br />
<br /></p>
<p id="selEditComments_2063"></p>
<p class="clsCommentsReplySection"><span id="selViewPostComment_2063" class="clsViewPostComment"><a href="http://www.pinaychannel.com/members/action/viewvideo/3464/Pinoy_TV/">Reply...</a></span></p>

</div></td>
</tr>
<tr class="clsCommentUserDetails">
<td colspan="2" class="clsCommentDateCell"><div class="clsCommentUser">
<p><a href="http://www.pinaychannel.com/Medyas/">Medyas</a></p>
<p class="clsCommentedDate">(20 hours ago)</p>
</div></td>
</tr>

<tr id="cmd2063_1">
<td>&nbsp;</td>
</tr>
<tr id="cmdEmptyRow2063">
<td colspan="2" id="selVideoCommentSeparator">&nbsp;</td>
</tr>
</table>
</div>
<div class="clsNormalCommentTop">

<table summary="table" id="selVideoCommentTable" class="clsCommentDownArrow">

<tr class="clsNotEditable" id="cmd2061">
<td class="clsHomeDispContents clsCommentAuthor"><p id="selMemberName"> <a href="http://www.pinaychannel.com/Marico4u/"> <img src="http://66.90.107.70/files/photos/4a08142c38dbe37T.jpg" alt="Marico4u" title="Marico4u" width="99" /></a> </p></td>
<td><div class="clsCommentDiv">
<p id="selEditCommentTxt_2061">thank you sa pinaychannel sa LIVE tv</p>
<p id="selEditComments_2061"></p>
<p class="clsCommentsReplySection"><span id="selViewPostComment_2061" class="clsViewPostComment"><a href="http://www.pinaychannel.com/members/action/viewvideo/3464/Pinoy_TV/">Reply...</a></span></p>

</div></td>
</tr>
<tr class="clsCommentUserDetails">
<td colspan="2" class="clsCommentDateCell"><div class="clsCommentUser">
<p><a href="http://www.pinaychannel.com/Marico4u/">Marico4u</a></p>
<p class="clsCommentedDate">(20 hours ago)</p>
</div></td>
</tr>

<tr id="cmd2061_1">
<td>&nbsp;</td>
</tr>
<tr id="cmdEmptyRow2061">
<td colspan="2" id="selVideoCommentSeparator">&nbsp;</td>
</tr>
</table>
</div>
<div class="clsNormalCommentTop">

<table summary="table" id="selVideoCommentTable" class="clsCommentDownArrow">

<tr class="clsNotEditable" id="cmd2060">
<td class="clsHomeDispContents clsCommentAuthor"><p id="selMemberName"> <a href="http://www.pinaychannel.com/Cat0802/"> <img src="http://66.90.107.70/files/photos/0245952ecff5501T.jpg" alt="Cat0802" title="Cat0802" /></a> </p></td>
<td><div class="clsCommentDiv">
<p id="selEditCommentTxt_2060">ayus naman manood ng LIVE abs d2 sa<br>korea.<br /></p>
<p id="selEditComments_2060"></p>

<p class="clsCommentsReplySection"><span id="selViewPostComment_2060" class="clsViewPostComment"><a href="http://www.pinaychannel.com/members/action/viewvideo/3464/Pinoy_TV/">Reply...</a></span></p>
</div></td>
</tr>
<tr class="clsCommentUserDetails">
<td colspan="2" class="clsCommentDateCell"><div class="clsCommentUser">
<p><a href="http://www.pinaychannel.com/Cat0802/">Cat0802</a></p>
<p class="clsCommentedDate">(21 hours ago)</p>

</div></td>
</tr>
<tr id="cmd2060_1">
<td>&nbsp;</td>
</tr>
<tr id="cmdEmptyRow2060">
<td colspan="2" id="selVideoCommentSeparator">&nbsp;</td>
</tr>
</table>

</div>
<div class="clsNormalCommentTop">
<table summary="table" id="selVideoCommentTable" class="clsCommentDownArrow">

<tr class="clsNotEditable" id="cmd2054">
<td class="clsHomeDispContents clsCommentAuthor"><p id="selMemberName"> <a href="http://www.pinaychannel.com/Reddaren/"> <img src="http://www.pinaychannel.com/images/noImage_T.jpg" alt="Reddaren" title="Reddaren" width="99" /></a> </p></td>
<td><div class="clsCommentDiv">
<p id="selEditCommentTxt_2054">Thanks a lot and god bless.More<br>thanks..PInay Channel.</p>

<p id="selEditComments_2054"></p>
<p class="clsCommentsReplySection"><span id="selViewPostComment_2054" class="clsViewPostComment"><a href="http://www.pinaychannel.com/members/action/viewvideo/3464/Pinoy_TV/">Reply...</a></span></p>
</div></td>
</tr>
<tr class="clsCommentUserDetails">
<td colspan="2" class="clsCommentDateCell"><div class="clsCommentUser">
<p><a href="http://www.pinaychannel.com/Reddaren/">Reddaren</a></p>
<p class="clsCommentedDate">(1 day ago)</p>

</div></td>
</tr>
<tr id="cmd2054_1">
<td>&nbsp;</td>
</tr>
<tr id="cmdEmptyRow2054">
<td colspan="2" id="selVideoCommentSeparator">&nbsp;</td>
</tr>
</table>

</div>
<table>
<tr id="view_all_comments">
<td colspan="2"><p class="clsMoreComments"> <a href="http://www.pinaychannel.com/action/viewvideo/3464/Pinoy_TV/?vpkey=&show=all">View All <span id="total_comments2">157</span> Comments</a> </p></td>
</tr>
</table>

</td>
</tr>
</table>
</div>
<div id="selComment">
<h2>would you like to comment?</h2>
<div class="clsMemberJoin">
<p>join <a href="http://www.pinaychannel.com/action/index/">Pinaychannel</a> for a free account, or <a href="http://www.pinaychannel.com/action/login/">Login</a> if you are already a member</p>

</div>
</div>
</td>
<td>
<div align="center" style="border:1px solid #cccccc;margin-bottom:10px;font-size:11px;">
<div style="text-align: center; background-color: rgb(0, 0, 0);"><b><span style="color: rgb(51, 204, 255);"><span style="color: rgb(0, 0, 0);">&#39;&#39;</span>Philippine Time<span style="color: rgb(0, 0, 0);">&#39;&#39;</span><span style="color: rgb(0, 0, 0);"></span></span><embed src="http://www.clocklink.com/clocks/5005-white.swf?TimeZone=Philippines_Manila&amp;" width="120" height="40" wmode="transparent" type="application/x-shockwave-flash"></b><div style="text-align: center; background-color: rgb(255, 255, 255);"><b><br></b></div><div style="background-color: rgb(255, 255, 255);" align="center"><EMBED src="http://pinoytubetv.chatango.com/group" bgcolor="#FFFFFF" width="300" height="550" wmode="transparent" allowScriptAccess="always" allowNetworking="all" type="application/x-shockwave-flash" flashvars="cid=1208960205761&b=60&f=50&l=999999&q=999999&r=100&s=1&t=0"></EMBED>
<a href="http://www.pinaychannel.com/chat.html" target="_blank"><b>Enlarge ChatBox</b></a>
<script type="text/javascript"><!--
google_ad_client = "pub-4498148188065292";
/* 300x250, created 8/4/08 */
google_ad_slot = "1839816754";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script>

<div class='box3' style="width:330px;">
<div class='boxtop3'>
<div></div>
</div>
<div class='boxcontent3'>
<p><b>Your Donations Keep This Site Running:</p></b>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">

<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----MIIHTwYJKoZIhvcNAQcEoIIHQDCCBzwCAQExggEwMIIBLAIBADCBlDCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb20CAQAwDQYJKoZIhvcNAQEBBQAEgYB/cP5OQ8sCZmUjd6MKXp9bXpP6juCXeoOxvUoYjbB1ryxkWHW3Q8YaoN5/+ZUf29mpPBdnKmKGCXR2vm7xoNs2R76lLX8HMb/50kkonG1PFoGHoWE3yhHchYOd2m98TAOMwtNhV/+a5EeWEfY6P57wzT+MkLZKxKXuNVjtNIo8ijELMAkGBSsOAwIaBQAwgcwGCSqGSIb3DQEHATAUBggqhkiG9w0DBwQIAgq+zY61LY+AgajAmC6nSJbDIwj2dfvFq/PdwpdR3ZG4413xo0MC1Gp23gTqt/Wh6/Mzgw6RRaSZXMJQhGziVHXXoxnXw0u3Eprpbg4viPXRSJZQBbHjR6EGaLpLYqfBOJE22XPyNLLOsTss4EqOB91+zox049i8tJ/mRRACv9TMPQ1AQCmFpv0Y1F99bPFGEccK/PeZoeQEb+8yeDIVkj9eigqfWy4a5DNNK6NMi/oNG0WgggOHMIIDgzCCAuygAwIBAgIBADANBgkqhkiG9w0BAQUFADCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb20wHhcNMDQwMjEzMTAxMzE1WhcNMzUwMjEzMTAxMzE1WjCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb20wgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMFHTt38RMxLXJyO2SmS+Ndl72T7oKJ4u4uw+6awntALWh03PewmIJuzbALScsTS4sZoS1fKciBGoh11gIfHzylvkdNe/hJl66/RGqrj5rFb08sAABNTzDTiqqNpJeBsYs/c2aiGozptX2RlnBktH+SUNpAajW724Nv2Wvhif6sFAgMBAAGjge4wgeswHQYDVR0OBBYEFJaffLvGbxe9WT9S1wob7BDWZJRrMIG7BgNVHSMEgbMwgbCAFJaffLvGbxe9WT9S1wob7BDWZJRroYGUpIGRMIGOMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExFjAUBgNVBAcTDU1vdW50YWluIFZpZXcxFDASBgNVBAoTC1BheVBhbCBJbmMuMRMwEQYDVQQLFApsaXZlX2NlcnRzMREwDwYDVQQDFAhsaXZlX2FwaTEcMBoGCSqGSIb3DQEJARYNcmVAcGF5cGFsLmNvbYIBADAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4GBAIFfOlaagFrl71+jq6OKidbWFSE+Q4FqROvdgIONth+8kSK//Y/4ihuE4Ymvzn5ceE3S/iBSQQMjyvb+s2TWbQYDwcp129OPIbD9epdr4tJOUNiSojw7BHwYRiPh58S1xGlFgHFXwrEBb3dgNbMUa+u4qectsMAXpVHnD9wIyfmHMYIBmjCCAZYCAQEwgZQwgY4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEUMBIGA1UEChMLUGF5UGFsIEluYy4xEzARBgNVBAsUCmxpdmVfY2VydHMxETAPBgNVBAMUCGxpdmVfYXBpMRwwGgYJKoZIhvcNAQkBFg1yZUBwYXlwYWwuY29tAgEAMAkGBSsOAwIaBQCgXTAYBgkqhkiG9w0BCQMxCwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0wODA2MjMwNDA2MDRaMCMGCSqGSIb3DQEJBDEWBBSHJ9KGV3jrieIhrllWbzmj0rboJjANBgkqhkiG9w0BAQEFAASBgGOqNe5w6aQDEpyYxsxHOGYK9mOTYsETDGCwS6RcbpqyoDBpqYAY8Rjz3ZUKdsHR62ZGOBBEdWbsnZi1UUV6KeoYVSG3mVcCHZZm9H7u24hPLo+qYj11+6B2B6gzlDIwEfjoUc4U9l5r7NfstSreeWowBgMuW18aVhLg0iaFVTOH-----END PKCS7-----
">
</form>
<br />
<br />
<!-- Content goes here -->

<div style="border:1px solid #993300;width:310px;">
<table cellpadding="0" cellspacing="0">
<tr>
<td style="padding-right:5px;width:60px;">
<a href="http://www.pinaychannel.com//">
<div style="width:60px;height:60px;border:2px solid #000000;background:url(http://www.pinaychannel.com/images/noImage_T.jpg) no-repeat center center;background-color:#ffffff;">
</div></a>
</td>

<td>
<p class="user-title"><a href="http://www.pinaychannel.com//">Watchpinoy</a></p>
<p><span class="clsVideoContentTitle">Date:</span>&nbsp;24th Jul 08</p>
<p><span class="clsVideoContentTitle">Channel:</span>&nbsp;<a href="http://www.pinaychannel.com/action/videolist/videonew/?cid=53">External UPLOAD</a>
</p>
</td>
</tr>
</table>
</div>
<br />

Pinoy TV

<!-- For rounded corners -->

<hr />

<hr>
<div class="clsMainTagsDisplay">
<ul>
<li class="clsVideoContentTitle">Tags:</li>
<a href="http://www.pinaychannel.com/action/videolist/videonew/?tags=LiveTV">LiveTV</a>
</ul>
</div>

</div>
<div class='boxbottom3'>
<div></div>
</div>
</div>

<div style="">

<div style="margin-top:10px;padding:5px;text-align:center;border:1px solid #cccccc;background-color:#ffffff;">
<script src="http://cdn.gigya.com/wildfire/JS/WFButton.js?module=bookmarks&partner=185111&widgetTitle=Pinoy TV"></script>
&nbsp;&nbsp;&nbsp;

<script src="http://cdn.gigya.com/wildfire/JS/WFButton.js?module=post&cid=share_content&partner=185111&widgetTitle=Pinoy TV"></script>

</div>

<textarea id="share_content" style="display:none">

<style>
@font-face {
font-family: Broken15;
font-style: normal;
font-weight: normal;
src: url(http://www.pinaychannel.com/sharedfonts/4.TTF);
}

a {
color:#ff7e00;
font-family:Arial;
text-decoration:none;
}

a:hover {
color:#ff7e00;
font-family:Arial;
text-decoration:underline;
}

#rnd_container {background: #FFFFFF; margin:0px;}

.rnd_top {display:block; background:#f3f3f3; font-size:1px;}
.rnd_bottom {display:block; background:#f3f3f3; font-size:1px;}
.rnd_b1, .rnd_b2, .rnd_b3, .rnd_b4 {display:block; overflow:hidden;}
.rnd_b1, .rnd_b2, .rnd_b3 {height:1px;}
.rnd_b2, .rnd_b3, .rnd_b4 {background:#FFFFFF; border-left:1px solid #f3f3f3; border-right:1px solid #f3f3f3;}
.rnd_b1 {margin:0 6px; background:#ffffff;}
.rnd_b2 {margin:0 3px; border-width:0 1px;}
.rnd_b3 {margin:0 2px;}
.rnd_b4 {height:2px; margin:0 1px;}

.rnd_content {
display:block;
border:0 solid #f3f3f3;
border-width:0 1px;
padding: 4px;
background:#FFFFFF;
color:#000000;
}

#rnd_container-t {background: #f3f3f3f3; margin:0px;}

.rnd_top-t {display:block; background:#ffffff; font-size:1px;}
.rnd_bottom-t {display:block; background:#FFFFFF; font-size:1px;}
.rnd_b1-t, .rnd_b2-t, .rnd_b3-t, .rnd_b4-t {display:block; overflow:hidden;}
.rnd_b1-t, .rnd_b2-t, .rnd_b3-t {height:1px;}
.rnd_b2-t, .rnd_b3-t, .rnd_b4-t {background:#f3f3f3; border-left:1px solid #f3f3f3; border-right:1px solid #ffffff;}
.rnd_b1-t {margin:0 6px; background:#f3f3f3;}
.rnd_b2-t {margin:0 3px; border-width:0 1px;}
.rnd_b3-t {margin:0 2px;}
.rnd_b4-t {height:2px; margin:0 1px;}

.rnd_content-t {
text-align:center;
display:block;
border:0 solid #f3f3f3;
border-width:0 1px;
padding: 0px;
font-family:Arial;
color:#000000;
}

#rnd_container-m {background: #FFFFFF; margin-bottom:0px;width:100px;margin-left:20px;}

.rnd_top-m, .rnd_bottom-m {display:block; background:#f3f3f3; font-size:1px;}
.rnd_b1-m, .rnd_b2-m, .rnd_b3-m, .rnd_b4-m {display:block; overflow:hidden;}
.rnd_b1-m, .rnd_b2-m, .rnd_b3-m {height:1px;}
.rnd_b2-m, .rnd_b3-m, .rnd_b4-m {background:#FFFFFF; border-left:1px solid #f3f3f3; border-right:1px solid #f3f3f3;}
.rnd_b1-m {margin:0 6px; background:#f3f3f3;}
.rnd_b2-m {margin:0 3px; border-width:0 2px;}
.rnd_b3-m {margin:0 2px;}
.rnd_b4-m {height:2px; margin:0 1px;}

.rnd_content-m {
text-align:center;
display:block;
border:0 solid #f3f3f3;
border-width:0 1px;
padding: 4px;
font-family:Arial;
font-weight:bold;
background:#FFFFFF;
color:#000000;
}

#rnd_container-m2 {background: #FFFFFF; margin-bottom:0px;width:100px;margin-left:10px;}

.rnd_top-m2, .rnd_bottom-m2 {display:block; background:#f3f3f3; font-size:1px;}
.rnd_b1-m2, .rnd_b2-m2, .rnd_b3-m2, .rnd_b4-m2 {display:block; overflow:hidden;}
.rnd_b1-m2, .rnd_b2-m2, .rnd_b3-m2 {height:1px;}
.rnd_b2-m2, .rnd_b3-m2, .rnd_b4-m2 {background:#FFFFFF; border-left:1px solid #f3f3f3; border-right:1px solid #f3f3f3;}
.rnd_b1-m2 {margin:0 6px; background:#f3f3f3;}
.rnd_b2-m2 {margin:0 3px; border-width:0 2px;}
.rnd_b3-m2 {margin:0 2px;}
.rnd_b4-m2 {height:2px; margin:0 1px;}

.rnd_content-m2 {
text-align:center;
display:block;
border:0 solid #f3f3f3;
border-width:0 1px;
padding: 0px;
font-size:11px;
font-weight:bold;
font-family:Arial;
background:#FFFFFF;
color:#000000;
}
.mm {
background-color:#f3f3f3;
}

.f {
font-size:48px;
margin:-7px;
font-weight:bold;
font-family: Swatch It, Arial, Helvetica, sans-serif;
color:#fd7777;
}

.a {
font-size:48px;
font-weight:bold;
font-family: Swatch It, Arial, Helvetica, sans-serif;
color:#00c0ff;
}

.c {
font-size:48px;
margin:-7px;
font-weight:bold;
font-family: Swatch It, Arial, Helvetica, sans-serif;
color:#f9ac3e;
}

.e {
font-size:48px;
font-weight:bold;
font-family: Swatch It, Arial, Helvetica, sans-serif;
color:#c3dc17;
}

.join {
margin:-10px;
font-size:48px;
font-weight:normal;
font-family: Swatch It, Arial, Helvetica, sans-serif;
color:#292929;
}

.dot {
font-size:48px;
width:10px;
height:10px;
font-weight:bold;
font-family: Swatch It, Arial, Helvetica, sans-serif;
color:#ff4242;
}

.com {
font-size:48px;
margin:-5px;
font-weight:bold;
font-family: Swatch It, Arial, Helvetica, sans-serif;
color:#b5b5b5;
}

.u20 {
padding:20px;
}

.i20 {
border:0px;width:300px;padding:4px;display:inline;
background-color:#FFFFFF;
}

.i20 input{
border:0px;width:270px;font-size:16px;margin-right:10px;;
}

.b20 {
font-family: Arial;
color:#333333;
font-size:12px;
background-color:#f3f3f3;
padding:8px;
text-align:center;
}

.b20-1 {
font-family: Arial;
color:#333333;
font-size:11px;
padding:8px;
text-align:center;
}

</style>

</head>

<body>

<div id="rnd_container-t">
<b class="rnd_top-t"><b class="rnd_b1-t"></b><b class="rnd_b2-t"></b><b class="rnd_b3-t"></b><b class="rnd_b4-t"></b></b>
<div class="rnd_content-t">
<div class="mm">
<div class="u20">
<a href="http://www.pinaychannel.com/?ref=Watchpinoy">
<span class="f">f</span><span class="a">a</span><span class="c">c</span><span class="e">e</span><span class="join">join</span><span class="dot">.</span><span class="com">community</span>
</a>
</div>
</div>
</div>

<div id="rnd_container">
<b class="rnd_top"><b class="rnd_b1"></b><b class="rnd_b2"></b><b class="rnd_b3"></b><b class="rnd_b4"></b></b>
<div class="rnd_content">

<div style="margin:20px;">
<table cellpadding="0" cellspacing="0" width="auto">
<tr>
<td colspan="2">
<h2>Hi! I want to share with you this cool stuff.</h2>
<hr>
<a href="http://www.pinaychannel.com/action/viewvideo/3464/?ref=Watchpinoy">
<h1 style="font-size:18px;color:#999999">Pinoy TV</h1>
</a>
<hr>
</td>
</tr>
<tr>
<td style="padding-right:10px;" valign="top">
<a href="http://www.pinaychannel.com/action/viewvideo/3464/?ref=Watchpinoy">
<img src="http://www.pinaychannel.com/files/videos/thumbnails/51e6d6e679953c6L.jpg">
</a>
<hr>
<table>
<tr>
<td width="70" height="60">
<a href="http://www.pinaychannel.com//">
<div style="width:60px;height:60px;border:2px solid #000000;background:url(http://www.pinaychannel.com/images/noImage_T.jpg) no-repeat center center;background-color:#ffffff;">
</div></a>
</td>
<td>
Adedd by <a href="http://www.pinaychannel.com//?ref=Watchpinoy">Watchpinoy</a><br>
<span class="clsVideoContentTitle">Date:</span>&nbsp;24th Jul 08<br>
<span class="clsVideoContentTitle">Channel:</span>&nbsp;<a href="http://www.pinaychannel.com/action/videolist/videonew/?cid=53">External UPLOAD</a>
</td>
</tr>
</table>

</td>
<td style="border-left:1px solid #cccccc;margin-left:10px;padding-left:10px;">
<h3>Check other videos from <a href="http://www.pinaychannel.com//">Watchpinoy</a></h3>

<table>
<tr style="border-bottom:1px solid #cccccc;">
<td valign="top" align="left">
<a href="http://www.pinaychannel.com/action/viewvideo/5212/LIVE_TV___Cebu_Catholic_Television_Network/?vpkey="><img src="http://www.pinaychannel.com/files/videos/thumbnails/c5d215777c22970S.jpg" alt="LIVE TV - Cebu Catholic Television Network"/></a>

</td>
<td>
<a href="http://www.pinaychannel.com/action/viewvideo/5212/LIVE_TV___Cebu_Catholic_Television_Network/?vpkey=">LIVE TV - Cebu Catholic Television Network</a><br />
<b>by: </b>Watchpinoy<br />
0:00 | <b>views: </b>179 </td>

</tr>
<tr style="border-bottom:1px solid #cccccc;">
<td valign="top" align="left">
<a href="http://www.pinaychannel.com/action/viewvideo/5207/WWE_Summerslam_2008/?vpkey="><img src="http://www.pinaychannel.com/files/videos/thumbnails/246a3c5544feb05S.jpg" alt="WWE Summerslam 2008"/></a>

</td>
<td>
<a href="http://www.pinaychannel.com/action/viewvideo/5207/WWE_Summerslam_2008/?vpkey=">WWE Summerslam 2008</a><br />
<b>by: </b>Watchpinoy<br />
0:00 | <b>views: </b>141 </td>

</tr>
<tr style="border-bottom:1px solid #cccccc;">
<td valign="top" align="left">
<a href="http://www.pinaychannel.com/action/viewvideo/5197/NET_25_Live_TV/?vpkey="><img src="http://www.pinaychannel.com/files/videos/thumbnails/ea06ed6e977637aS.jpg" alt="NET 25 Live TV"/></a>

</td>
<td>
<a href="http://www.pinaychannel.com/action/viewvideo/5197/NET_25_Live_TV/?vpkey=">NET 25 Live TV</a><br />
<b>by: </b>Watchpinoy<br />
0:00 | <b>views: </b>488 </td>

</tr>
<tr style="border-bottom:1px solid #cccccc;">
<td valign="top" align="left">
<a href="http://www.pinaychannel.com/action/viewvideo/5018/Hello__My_Lady_08_19_2008/?vpkey="><img src="http://www.pinaychannel.com/files/videos/thumbnails/71463aaacf046faS.jpg" alt="Hello! My Lady 08-19-2008"/></a>

</td>
<td>
<a href="http://www.pinaychannel.com/action/viewvideo/5018/Hello__My_Lady_08_19_2008/?vpkey=">Hello! My Lady 08-19-2008</a><br />
<b>by: </b>Watchpinoy<br />
0:00 | <b>views: </b>315 </td>

</tr>
<tr style="border-bottom:1px solid #cccccc;">
<td valign="top" align="left">
<a href="http://www.pinaychannel.com/action/viewvideo/5017/Hello__My_Lady_08_18_2008/?vpkey="><img src="http://www.pinaychannel.com/files/videos/thumbnails/0af787945872196S.jpg" alt="Hello! My Lady 08-18-2008"/></a>

</td>
<td>
<a href="http://www.pinaychannel.com/action/viewvideo/5017/Hello__My_Lady_08_18_2008/?vpkey=">Hello! My Lady 08-18-2008</a><br />
<b>by: </b>Watchpinoy<br />
0:00 | <b>views: </b>347 </td>

</tr>
</table>

</td>
</tr>
</table>
</div>

</div>
<b class="rnd_bottom"><b class="rnd_b4"></b><b class="rnd_b3"></b><b class="rnd_b2"></b><b class="rnd_b1"></b></b>
</div>

<div class="b20">
<a href="http://www.pinaychannel.com/action/memberslist/?ref=Watchpinoy">Faces</a> |
<a href="http://www.pinaychannel.com/action/videolist/videomostviewed/?ref=Watchpinoy">Videos</a> |
<a href="http://www.pinaychannel.com/action/photolist/photomostviewed/?ref=Watchpinoy">Popular Photos</a> |
<a href="http://www.pinaychannel.com/action/musiclist/musicnew/?ref=Watchpinoy">New Songs</a> |
<a href="http://www.pinaychannel.com/action/gamelist/gamenew/?ref=Watchpinoy">Cool Games</a> |
<a href="http://www.pinaychannel.com/action/articlelist/articlenew/?ref=Watchpinoy">Fresh Articles</a> |
<a href="http://www.pinaychannel.com/action/community/?ref=Watchpinoy">Community Club</a>
<br>
<span class="b20-1">* This email is not a spam.</span>
<br>
&copy; <a href="http://www.pinaychannel.com/?ref=Watchpinoy"><b>pinaychannel.com</b></a> 2008. All rights reserved.
</div>

</div>
<b class="rnd_bottom-t"><b class="rnd_b4-t"></b><b class="rnd_b3-t"></b><b class="rnd_b2-t"></b><b class="rnd_b1-t"></b></b>
</div>

</textarea>

</div>

<div id="selVideoQuickLinks" style="margin-top:10px;margin-bottom:10px;">

</div>

<div class='box3' style="width:330px;">
<div class='boxtop3'>

<div></div>
</div>
<div id="clasp_from-user" class="clasp"><img src="http://www.pinaychannel.com/images/hd/img_from-user.gif" onClick="lunchboxOpen('from-user');"></div>

<div class='boxcontent3' id="lunch_from-user" style="display:none;padding:10px;">
<div style="width:310px;overflow-x:hidden;overflow-y:auto;max-height:300px;">
<!-- Content goes here -->

<table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/5212/LIVE_TV___Cebu_Catholic_Television_Network/?vpkey="><img src="http://www.pinaychannel.com/files/videos/thumbnails/c5d215777c22970S.jpg" alt="LIVE TV - Cebu Catholic Television Network" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/5212/LIVE_TV___Cebu_Catholic_Television_Network/?vpkey=">LIVE TV - Cebu Catholic T ...</a></p>

<p class="rlt-info">0:00 | <b>views: </b>179 | <b>by: </b>Watchpinoy</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/5207/WWE_Summerslam_2008/?vpkey="><img src="http://www.pinaychannel.com/files/videos/thumbnails/246a3c5544feb05S.jpg" alt="WWE Summerslam 2008" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/5207/WWE_Summerslam_2008/?vpkey=">WWE Summerslam 2008</a></p>

<p class="rlt-info">0:00 | <b>views: </b>141 | <b>by: </b>Watchpinoy</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/5197/NET_25_Live_TV/?vpkey="><img src="http://www.pinaychannel.com/files/videos/thumbnails/ea06ed6e977637aS.jpg" alt="NET 25 Live TV" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/5197/NET_25_Live_TV/?vpkey=">NET 25 Live TV</a></p>

<p class="rlt-info">0:00 | <b>views: </b>488 | <b>by: </b>Watchpinoy</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/5018/Hello__My_Lady_08_19_2008/?vpkey="><img src="http://www.pinaychannel.com/files/videos/thumbnails/71463aaacf046faS.jpg" alt="Hello! My Lady 08-19-2008" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/5018/Hello__My_Lady_08_19_2008/?vpkey=">Hello! My Lady 08-19-2008</a></p>

<p class="rlt-info">0:00 | <b>views: </b>315 | <b>by: </b>Watchpinoy</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/5017/Hello__My_Lady_08_18_2008/?vpkey="><img src="http://www.pinaychannel.com/files/videos/thumbnails/0af787945872196S.jpg" alt="Hello! My Lady 08-18-2008" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/5017/Hello__My_Lady_08_18_2008/?vpkey=">Hello! My Lady 08-18-2008</a></p>

<p class="rlt-info">0:00 | <b>views: </b>347 | <b>by: </b>Watchpinoy</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/4873/Magdusa_Ka_08_15_08/?vpkey="><img src="http://www.pinaychannel.com/files/videos/thumbnails/945e01e4dfc8344S.jpg" alt="Magdusa Ka 08.15.08" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/4873/Magdusa_Ka_08_15_08/?vpkey=">Magdusa Ka 08.15.08</a></p>

<p class="rlt-info">0:00 | <b>views: </b>866 | <b>by: </b>Watchpinoy</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/4870/Dyesebel_79/?vpkey="><img src="http://www.pinaychannel.com/files/videos/thumbnails/3c565485bbd2c54S.jpg" alt="Dyesebel 79" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/4870/Dyesebel_79/?vpkey=">Dyesebel 79</a></p>

<p class="rlt-info">0:00 | <b>views: </b>1116 | <b>by: </b>Watchpinoy</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/4869/Dyesebel_80/?vpkey="><img src="http://www.pinaychannel.com/files/videos/thumbnails/20cf775fa6b5dfeS.jpg" alt="Dyesebel 80" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/4869/Dyesebel_80/?vpkey=">Dyesebel 80</a></p>

<p class="rlt-info">0:00 | <b>views: </b>1457 | <b>by: </b>Watchpinoy</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/4867/Gaano_Kadalas_ang_Minsan_08_15_08/?vpkey="><img src="http://www.pinaychannel.com/files/videos/thumbnails/9ac5a6d86e89241S.jpg" alt="Gaano Kadalas ang Minsan 08.15.08" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/4867/Gaano_Kadalas_ang_Minsan_08_15_08/?vpkey=">Gaano Kadalas ang Minsan ...</a></p>

<p class="rlt-info">0:00 | <b>views: </b>1048 | <b>by: </b>Watchpinoy</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/4864/Fafa_ni_jepoy/?vpkey="><img src="http://s005.panelboxmanager.com/~faceboo/files/videos/thumbnails/a68259547f3d25aS.jpg" alt="Fafa ni jepoy" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/4864/Fafa_ni_jepoy/?vpkey=">Fafa ni jepoy</a></p>

<p class="rlt-info">00:39 | <b>views: </b>303 | <b>by: </b>Watchpinoy</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/4848/tsiks_ni_jepoy/?vpkey="><img src="http://s005.panelboxmanager.com/~faceboo/files/videos/thumbnails/3e9f0fc9b2f89e0S.jpg" alt="tsiks ni jepoy" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/4848/tsiks_ni_jepoy/?vpkey=">tsiks ni jepoy</a></p>

<p class="rlt-info">02:52 | <b>views: </b>1015 | <b>by: </b>Watchpinoy</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/4845/Rhegz_itaktak_mo__/?vpkey="><img src="http://s005.panelboxmanager.com/~faceboo/files/videos/thumbnails/1e8eec0db325b87S.jpg" alt="Rhegz itaktak mo!!" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/4845/Rhegz_itaktak_mo__/?vpkey=">Rhegz itaktak mo!!</a></p>

<p class="rlt-info">01:27 | <b>views: </b>669 | <b>by: </b>Watchpinoy</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/4818/Dyesebel_80_P5_5/?vpkey="><img src="http://66.90.107.70/files/videos/thumbnails/e88f243bf341dedS.jpg" alt="Dyesebel 80 P5.5" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/4818/Dyesebel_80_P5_5/?vpkey=">Dyesebel 80 P5.5</a></p>

<p class="rlt-info">03:12 | <b>views: </b>1759 | <b>by: </b>Watchpinoy</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/4817/Dyesebel_80_P4/?vpkey="><img src="http://66.90.107.70/files/videos/thumbnails/7e6ff0205749bc6S.jpg" alt="Dyesebel 80 P4" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/4817/Dyesebel_80_P4/?vpkey=">Dyesebel 80 P4</a></p>

<p class="rlt-info">03:43 | <b>views: </b>1341 | <b>by: </b>Watchpinoy</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/4816/Dyesebel_80_P3/?vpkey="><img src="http://66.90.107.70/files/videos/thumbnails/cefb500a9f3d055S.jpg" alt="Dyesebel 80 P3" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/4816/Dyesebel_80_P3/?vpkey=">Dyesebel 80 P3</a></p>

<p class="rlt-info">04:33 | <b>views: </b>1366 | <b>by: </b>Watchpinoy</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/4815/Dyesebel_80_P2/?vpkey="><img src="http://66.90.107.70/files/videos/thumbnails/ed519c02f134f2cS.jpg" alt="Dyesebel 80 P2" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/4815/Dyesebel_80_P2/?vpkey=">Dyesebel 80 P2</a></p>

<p class="rlt-info">05:51 | <b>views: </b>1422 | <b>by: </b>Watchpinoy</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/4814/Dyesebel_80_P1/?vpkey="><img src="http://66.90.107.70/files/videos/thumbnails/084afd913ab1e6eS.jpg" alt="Dyesebel 80 P1" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/4814/Dyesebel_80_P1/?vpkey=">Dyesebel 80 P1</a></p>

<p class="rlt-info">05:14 | <b>views: </b>2154 | <b>by: </b>Watchpinoy</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/4767/Dyesebel_79_P5_5/?vpkey="><img src="http://66.90.107.70/files/videos/thumbnails/a3f61f3a8034cbfS.jpg" alt="Dyesebel 79 P5.5" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/4767/Dyesebel_79_P5_5/?vpkey=">Dyesebel 79 P5.5</a></p>

<p class="rlt-info">07:13 | <b>views: </b>1402 | <b>by: </b>Watchpinoy</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/4766/Dyesebel_79_P4/?vpkey="><img src="http://66.90.107.70/files/videos/thumbnails/9abe36658bff813S.jpg" alt="Dyesebel 79 P4" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/4766/Dyesebel_79_P4/?vpkey=">Dyesebel 79 P4</a></p>

<p class="rlt-info">05:47 | <b>views: </b>1475 | <b>by: </b>Watchpinoy</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/4765/Dyesebel_79_P3/?vpkey="><img src="http://66.90.107.70/files/videos/thumbnails/cfe795a0a3c7bc1S.jpg" alt="Dyesebel 79 P3" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/4765/Dyesebel_79_P3/?vpkey=">Dyesebel 79 P3</a></p>

<p class="rlt-info">06:31 | <b>views: </b>1431 | <b>by: </b>Watchpinoy</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
</table>

</div>
</div>

<div class='boxbottom3'>
<div></div>
</div>
</div>
<br>
<div class='box3' style="width:330px;">
<div class='boxtop3'>
<div></div>
</div>
<div id="clasp_related-videos" class="clasp"><img src="http://www.pinaychannel.com/images/hd/img_related-videos_active.gif" onClick="lunchboxClose('related-videos');"></div>

<div class='boxcontent3' id="lunch_related-videos" style="padding:10px;">

<div style="width:310px;overflow-x:hidden;overflow-y:auto;max-height:300px;">
<!-- Content goes here -->

<table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">
<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/5212/LIVE_TV___Cebu_Catholic_Television_Network/?vpkey="><img src="http://www.pinaychannel.com/files/videos/thumbnails/c5d215777c22970S.jpg" alt="LIVE TV - Cebu Catholic Television Network" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/5212/LIVE_TV___Cebu_Catholic_Television_Network/?vpkey=">LIVE TV - Cebu Catholic T ...</a></p>

<p class="rlt-info">0:00 | <b>views: </b>179 | <b>by: </b>Watchpinoy</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/5197/NET_25_Live_TV/?vpkey="><img src="http://www.pinaychannel.com/files/videos/thumbnails/ea06ed6e977637aS.jpg" alt="NET 25 Live TV" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/5197/NET_25_Live_TV/?vpkey=">NET 25 Live TV</a></p>

<p class="rlt-info">0:00 | <b>views: </b>488 | <b>by: </b>Watchpinoy</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/4044/TV5/?vpkey="><img src="http://www.pinaychannel.com/files/videos/thumbnails/df5354693177e83S.jpg" alt="TV5" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/4044/TV5/?vpkey=">TV5</a></p>

<p class="rlt-info">0:00 | <b>views: </b>43773 | <b>by: </b>Watchpinoy</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/3465/GMA__TV/?vpkey="><img src="http://www.pinaychannel.com/files/videos/thumbnails/797134c3e42371bS.jpg" alt="GMA TV" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/3465/GMA__TV/?vpkey=">GMA TV</a></p>

<p class="rlt-info">0:00 | <b>views: </b>220780 | <b>by: </b>Watchpinoy</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<!--<tr>
<td colspan="2"><a href="http://www.pinaychannel.com/action/videolist/videonew/?tags=LiveTV">See all videos</a></td>
</tr>-->
</table>

</div>

</div>
<div class='boxbottom3'>
<div></div>
</div>
</div>
<br>
<div class='box3' style="width:330px;">
<div class='boxtop3'>
<div></div>

</div>
<div id="clasp_top-videos" class="clasp"><img src="http://www.pinaychannel.com/images/hd/img_top-videos.gif" onClick="lunchboxOpen('top-videos');"></div>

<div class='boxcontent3' id="lunch_top-videos" style="padding:10px;display:none">
<div style="width:310px;overflow-x:hidden;overflow-y:auto;max-height:300px;">
<!-- Content goes here -->

<table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">
<tr>

<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/5211/pda__8_22_08/?vpkey="><img src="http://www.pinaychannel.com/files/videos/thumbnails/8ef0327d29dfae1S.jpg" alt="pda 8.22.08" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/5211/pda__8_22_08/?vpkey=">pda 8.22.08</a></p>

<p class="rlt-info">0:00 | <b>views: </b>152 | <b>by: </b>Carlap88</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/5210/my_girl__8_22_08/?vpkey="><img src="http://www.pinaychannel.com/files/videos/thumbnails/e7d4c8d4fe04d9bS.jpg" alt="my girl 8.22.08" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/5210/my_girl__8_22_08/?vpkey=">my girl 8.22.08</a></p>

<p class="rlt-info">0:00 | <b>views: </b>414 | <b>by: </b>Carlap88</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/5208/dyosa__8_22_08/?vpkey="><img src="http://www.pinaychannel.com/files/videos/thumbnails/59b1deff341edb0S.jpg" alt="dyosa 8.22.08" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/5208/dyosa__8_22_08/?vpkey=">dyosa 8.22.08</a></p>

<p class="rlt-info">0:00 | <b>views: </b>385 | <b>by: </b>Carlap88</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<tr>
<td>

<table cellpadding="0" cellspacing="0">

<tr>
<td width="66" height="49" valign="middle" align="center" style="background-color:#dddddd">
<a href="http://www.pinaychannel.com/action/viewvideo/5206/iisa_pa_lamang__8_22_08/?vpkey="><img src="http://www.pinaychannel.com/files/videos/thumbnails/922073b18844540S.jpg" alt="iisa pa lamang 8.22.08" width="60" height="49" /></a>

</td>
<td style="background-color:#dddddd">
<div class="rlt">
<p class="rlt-title"><a href="http://www.pinaychannel.com/action/viewvideo/5206/iisa_pa_lamang__8_22_08/?vpkey=">iisa pa lamang 8.22.08</a></p>

<p class="rlt-info">0:00 | <b>views: </b>598 | <b>by: </b>Carlap88</p>

<div class="addql" style="width:150px;">
<a href="http://www.pinaychannel.com/action/login/">login</a> to add video
<!--<a href="#"><img src="http://www.pinaychannel.com/images/screen_blue/icon-addvideo.gif" /></a>-->
</div>
</div>

</div>
</td>
</tr>
<tr>

<td colspan="2" class="tdDot">
</td>
</tr>

</td>
</tr>
</table>
<!--<tr>
<td colspan="2"><a href="http://www.pinaychannel.com/action/videolist/videotoprated/">See all videos</a></td>
</tr>-->
</table>

</div>

</div>
<div class='boxbottom3'>
<div></div>
</div>
</div>

</td>
</tr>
</table>
</div>

</div>
</div>

<!-- Footer begins -->
</div>
<!-- Footer -->
</div>
<div class='boxbottom'><div></div></div>
</div>

<div class='box' style="margin-top:10px;">
<div class='boxtop'><div></div></div>
<div class='boxcontent'>

<div align="center" style="margin:3px;background-color:transparent;"></div>
<center><script type="text/javascript"><!--
google_ad_client = "pub-4498148188065292";
/* 728x90, created 5/17/08 */
google_ad_slot = "4373894798";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></center>
</div>
<div class='boxbottom'><div></div></div>
</div>

<div id="footer">
<div class='box' style="margin-top:0px;">
<div class='boxtop'><div></div></div>
<div class='boxcontent'>

<div align="center" style="font-size:12px;font-weight:bold;">
<!-- Begin: AdBrite -->
<script type="text/javascript">
var AdBrite_Title_Color = '0000FF';
var AdBrite_Text_Color = '000000';
var AdBrite_Background_Color = 'FFFFFF';
var AdBrite_Border_Color = 'CCCCCC';
var AdBrite_URL_Color = '008000';
</script>
<span style="white-space:nowrap;"><script src="http://ads.adbrite.com/mb/text_group.php?sid=758776&zs=3732385f3930" type="text/javascript"></script><!--
--><a target="_top" href="http://www.adbrite.com/mb/commerce/purchase_form.php?opid=758776&afsid=1"><img src="http://files.adbrite.com/mb/images/adbrite-your-ad-here-leaderboard.gif" style="background-color:#CCCCCC;border:none;padding:0;margin:0;" alt="Your Ad Here" width="14" height="90" border="0" /></a></span>
<!-- End: AdBrite -->

<h1>Create and Share cool stuff. Find and make new friends. Enjoy PinayChannel.com!</h1>
</div>
<div style="background:url(http://www.pinaychannel.com/css/cslider/images/bg-slider.png) no-repeat top center;height:177px;*height:217px;padding:20px;font-weight:normal">
<b>Videos - </b>&nbsp;<a href="http://www.pinaychannel.com/action/videolist/home/">Explore video</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/videolist/videonew/">New video</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/videolist/videotoprated/">Top video</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/videolist/videomostviewed/">Popular video</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/videoplaylist/">Playlists</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/videolist/videonew/?cid=3">Music video</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/videolist/videonew/?cid=2">Comedy video</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/videolist/videonew/?cid=13">Cool commercials video</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/videolist/videonew/?cid=15">Movie Trailers</a>

<div align="center">
<img src="http://www.pinaychannel.com/images/h-line.png">
</div>
<b>Photos - </b>&nbsp;<a href="http://www.pinaychannel.com/action/videolist/home/">Explore photo</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/photolist/photonew/">New photo</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/photolist/phototoprated/">Top photo</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/photolist/photomostviewed/">Popular photo</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/photolist/photomostfavorite/">Favorite photo</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/albumlist/">Photo Albums</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/photolist/photonew/?cid=22">People</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/photolist/photonew/?cid=8">Celebrities</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/photolist/photonew/?cid=5">Beauty & Fashion</a>

<div align="center">
<img src="http://www.pinaychannel.com/images/h-line.png">
</div>
<b>Music - </b>&nbsp;<a href="http://www.pinaychannel.com/action/musiclist/home/">Explore music</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/musiclist/musicnew/">New music</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/musiclist/musictoprated/">Music hits</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/musiclist/musicmostviewed/">Popular songs</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/musiclist/artists/">Find artists</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/musiclist/musicnew/?cid=14">Hip-Hop</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/musiclist/musicnew/?cid=2">Rock</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/musiclist/musicnew/?cid=1">Pop</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/musiclist/musicnew/?cid=5">Rap Music</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/musiclist/musicnew/?cid=10">Jazz</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/musiclist/musicnew/?cid=4">R&B</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/musiclist/musicnew/?cid=11">Blues</a>

<div align="center">
<img src="http://www.pinaychannel.com/images/h-line.png">
</div>
<b>my Account - </b>&nbsp;<a href="http://www.pinaychannel.com/action/signup/">Register now</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/login/">Login</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/myhome/">my Home</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/myprofile/">my Profile</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/photoupload/">Upload Photo</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/videouploadpopup/">Upload Video</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/musicuploadpopup/">Upload Music</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/gameupload/">Upload Game</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/articleWriting/">Write Article</a>&nbsp;|&nbsp;<a href="http://www.pinaychannel.com/action/manageblog/">Post Blog</a>

<div align="center">
<img src="http://www.pinaychannel.com/images/h-line.png">
</div>
<table width="837">
</tr>
<tr>
<td width="33%" align="center" style="text-align:center;border-right:1px dotted #cccccc;padding:10px;">
<a href="http://www.pinaychannel.com/action/bloglist/">Blog</a>
<a href="http://www.pinaychannel.com/action/mail/inbox/">Messages</a>
</td>
<td width="33%" align="center" style="text-align:center;text-align:center;border-right:1px dotted #cccccc;padding:10px;">
<ul>
<li class="rss"><a href="http://www.pinaychannel.com/action/rssvideo/">RSS Video</a></li>

<li class="rss"><a href="http://www.pinaychannel.com/action/rssmusic/">RSS Audio</a></li>
<li class="rss"><a href="http://www.pinaychannel.com/action/rssphoto/">RSS photo</a></li>
</td>
<td width="33%" align="center" style="padding:10px;" align="center">
<a href="http://www.pinaychannel.com/action/contactus/">Contact PinayChannel.com</a>
</td>
</tr>
</table>
</div>
<table bgcolor=white cellpadding=10>
<tr>

<td style="font:9px verdana;padding:7px;text-align:justify">
<img src="http://www.pinaychannel.com/images/error.gif"> <b>Disclaimer:</b>

<br>

<br>
<b>PinayChannel.com</b> is absolutely legal and contain only links to other sites on the Internet :
( megaupload.com, dailymotion.com, myspace.com, ouou.com, stage6.com, tudou.com, veoh.com, youku.com, youtube.com and others.. )
We do not host or upload any video, films, media files ( avi, mov, flv, mpg, mpeg, divx, dvd rip, mp3, mp4, torrent, ipod, psp ), pinaychannel.com is not responsible for the accuracy, compliance, copyright, legality, decency, or any other aspect of the content of other linked sites.
If you have any legal issues please contact appropriate media file owners / hosters.<br>

</td>
</tr>
</table>
<br>

<br>

<br>
<div align="center" style="">
<p>&copy; 2008 PinayChannel.com. All rights reserved | <a href="http://www.pinaychannel.com/action/static/rules/">Privacy Policy</a> | <a href="pinaychannel.com/" alt="Powered by Pinaychannel.com">Powered by Pinaychannel.com</a>

</p>
</div>

</div>

<div class='boxbottom'><div></div></div>
</div>
</div>

</body></html>
<script language="javascript">
//from bizreel
if(document.getElementById('selPageBody'))
{
var a = document.getElementById('selPageBody').getElementsByTagName('a');
//var site_url = ;
for(var i=0; i<a.length; i++){
clk = a[i].onclick + '';
if((clk == 'null') || (clk == 'undefined') || (clk=='')){
a[i].onclick = function(){
var hurl = this.href;
if(hurl.indexOf('http://www.pinaychannel.com/')<0)
this.target = "_blank";
}
}
}
}
</script>
<script language="javascript">
var max_timer = 120;
changeTimer();
var dontUse = 0;
</script>
<script language="javascript">
var vLoader = 'loaderVideos';

var homeUrl = 'http://www.pinaychannel.com/action/viewvideo/3464/';
var disPrevButton = 'disabledPrevButton';
var disNextButton = 'disabledNextButton';
var pars= 'vLeft=&vFetch=';

function moveVideoSetToLeft(buttonObj, pg)
{
if(pg=='tag')
var pars= 'vTagLeft=&vTagFetch=';
if(pg=='user')
var pars= 'vUserLeft=&vUserFetch=';
if(pg=='top')
var pars= 'vTopLeft=&vTopFetch=';
if(pg=='resp')
var pars= 'vRespLeft=&vRespFetch=';

if(buttonObj.className ==disPrevButton)
{
return false;
}
videoSlider(pars, pg);
}
function moveVideoSetToRight(buttonObj, pg){

//alert('RIGHT----'+pg);
if(pg=='tag')
var pars= 'vTagRight=&vTagFetch=';
if(pg=='user')
var pars= 'vUserRight=&vUserFetch=';
if(pg=='top')
var pars= 'vTopRight=&vTopFetch=';
if(pg=='resp')
var pars= 'vRespRight=&vRespFetch=';

if(buttonObj.className ==disNextButton){
return false;
}
videoSlider(pars, pg);
}
function videoSlider(pars, pg)
{
if(pg=='resp')
{
showDiv('loaderRespVideos');
new Ajax.Request(homeUrl, {method:'post',parameters:pars+'&ajax_page=1&video_id=3464', onComplete:refreshVideoBlockResp});
return;
}
showDiv('loaderVideos');
if(pg=='tag')
new Ajax.Request(homeUrl, {method:'post',parameters:pars+'&ajax_page=1&video_id=3464&video_tags=LiveTV', onComplete:refreshVideoBlockTag});
if(pg=='user')
new Ajax.Request(homeUrl, {method:'post',parameters:pars+'&ajax_page=1&video_id=3464&user_id=1', onComplete:refreshVideoBlockUser});
if(pg=='top')
new Ajax.Request(homeUrl, {method:'post',parameters:pars+'&ajax_page=1&video_id=3464', onComplete:refreshVideoBlockTop});
}

refreshVideoBlockTag = function(resp)
{

//alert(resp.responseText);
//$('selRelatedContent').update(resp.responseText);
$('selRelatedContent').innerHTML=resp.responseText;
hideDiv('loaderVideos');
//$('loaderVideos').display='none';
}

refreshVideoBlockTop = function(resp)
{
//alert(resp.responseText);
//$('selTopContent').innerHTML='';
$('selTopContent').innerHTML=resp.responseText;
hideDiv('loaderVideos');
}
refreshVideoBlockUser = function(resp)
{
$('selUserContent').innerHTML=resp.responseText;
//$('selUserContent').update(resp.responseText);
hideDiv('loaderVideos');
}

refreshVideoBlockResp = function(resp)
{
$('selUserContentResp').innerHTML=resp.responseText;
//$('selUserContent').update(resp.responseText);
hideDiv('loaderRespVideos');
}
</script>

sorry about the long code im trying to grab this site video but i cant can you help me please

Good LUCK.. hehe! :P

i got it i have it streaming on my site

And lots of identity theft also!

And a little bit of Link Spamming on the side.