
function closeVpopup(){
	$('.dvdpop').hide();
	$('#dvdcont').html(firstHtml);
}
function setVidMP4(val, type){
	if (type =='ready'){
		curVid = val;
		$('.dvdpop').show();
	}
	if (type =='expired'){
		renewmp4(val);
	}
	if (type =='error'){
		alert('Download not available');
	}
}
function setVid(val){
	curVid = val;
	$('.dvdpop').show();
}
function getVideo(){
	$('#dvdmaintlink').attr('href',curVid);
	$('#dvdcont').html($('#dvdcont2').html());
}

function renewmp4(fid){
	var url = "index.php?";
	$.ajax({
		type: "GET",
		url:  "/index.php",
		data: 'controller=index&cmd=renewmp4&video_file_id='+fid,
		success: function(html){
		  alert(html);
		   location.reload(true);
		},
		error: function(){
		},
		beforeSend: function(){
		}
	});

}

