// confirmApply function
function confirmApplyNoResume(btn)
{
	if (btn=='yes')
	{
		window.location = './profile.php?errResume=true';
	}
}
// confirmApply function
function confirmApply(btn)
{
	if (btn=='yes')
	{
		Ext.MessageBox.confirm('Confirm', 'The resume that we have on file for you will be used. <a href=\'./profile.php\'>Upload new</a>', confirmApplyOk);
	}
}
function confirmApplyOk(btn)
{
	if (btn=='yes')
	{
		document.applytojobForm.submit();
	}
}