function checkUpload()
{		
	var id = 'dnn$ctr524$XModFeedback$FileUpload$ctl05';
	var returnVar = document.getElementsByName(id); 				
	if(returnVar.length > 0 && returnVar[0].value)
	{
		alert('Before submitting your CV, you must click the Upload link to attach your file.');
		return false;
	}
	else
	{
		return true;
	}
}