function playMovieRemote(url,foldername,size) {
	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);
	if(size=='large') {	
		winwidth=800;
		winheight=600+50;
	} else { 
		winwidth=640;
		winheight=480+50;
	}
	wposx=0;
	wposy=0;
	file='http://vtc.com/modules/products/affiliatePlay.php?size='+size+'&foldername='+foldername+'&sku='+mtitle+'&movie='+chapter+movienum+'&srv=alt';
	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);
}

