/*This file make validation about the uploading movies*/

function validateSendFile(form, msg2, uploading )
{
	var file = form.upFile.value.trim();
	var formats = Array("avi","AVI","mpg","MPG","MPG4","mpg4");
	
	dots = file.split(".");
	//get the part AFTER the LAST period.
	fileType = dots[dots.length-1];
	if(fileType!="avi" && fileType!="AVI")
	{
		alert(msg2);
		return false;
	}
	else 
	{
		
		form.submit();
    	document.getElementById('upload_status').innerHTML = uploading;
   		
	
	}	

}
