<!-- Hide

function openWindow(url) 
{

p=url.indexOf("movie");

mtitle=url.substring(p+10,url.length);
movienum=url.substring(p+8,p+10);
chapter=url.substring(p+6,p+8);

winwidth=640;
winheight=480+20;
wposx=0;
wposy=0;
file='http://www2.vtc.com/movieplayer.php?size=small&title='+mtitle+'&movie='+chapter+movienum+'&logged_in_user=yes';
//just added &logged_in_user=yes in between the quto marks, the qutes where already there don't remove
popupWin = window.open(file,"vtcplayer","status=no,resizable=no,toolbar=no,scrollbars=no,screenX="+wposx+",screenY=0,left="+wposx+",top="+wposy+",width="+winwidth+",height="+winheight);

}

// -->