// JavaScript Document
var embed_check = baseurl+"/actions/embed_form_verifier.php";
function check_embed_code()
{	
	var  theForm = '#embedUploadForm';
	if($(theForm+" #embed_code").val() == "")
		alert("Embed code was empty");
	else if($(theForm+" #duration").val() == "")
		alert("Please enter video duration");
	else
	{
		
		$.post(embed_check, 
		{ 	
			embed_code : encode64($(theForm+" #embed_code").val()),
			duration : $(theForm+" #duration").val(),
			file_name : file_name,
			thumb_file : $(theForm+" #thumb_file").val(),
			verify_embed : 'yes'
		},				
		
		
		function (data) {
			if(data.err)
			{
				alert(data.err);
			}else{
				$(theForm).submit();
			}
		}, "json");
	}
}
