function abreCapa(c){

   var width = 1024;
   var height = 768;

   var left = 0;
   var top = 0;


   window.open('mostraCapa.php?c='+c,'pop', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=yes, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');



}

function baixaFilme(c, u , t , cc){

	document.formDownload.v.value = c;
	document.formDownload.u.value = u;
	document.formDownload.t.value = t;
	document.formDownload.cc.value = cc;
	document.formDownload.target='frame_down';
	document.formDownload.action='gerenciaDownload.php';
	document.formDownload.submit();

}

function erroDownload(vMsg){

	var l = parent.document.getElementById('msg_download');
	l.style.display = 'block';
	l.innerHTML = vMsg;

}