function cashOut()
{
	if(document.cash_out.cash_out.value<10) {
		if(!confirm("Are you sure you want to cash out now?  If you wait until you have 10 friends, you will receive a bonus Black Raptor mount!")) {
			return;
		}
	}
	document.cash_out.submit();
}
