function confirmDelete(response,theForm) {
	if (confirm(response))
	{
		document.forms[theForm].submit();
	}
}

function confirmRegistration(f) {
	
	if (f.tnccheck.checked) {
		//alert ('cool');
		return true;
	}else{
		alert ("Please check the terms and conditions box, in order to proceed.");
		return false;
	}
}
function confirmResend(response,theForm) {
	if (confirm(response))
	{
		document.forms[theForm].submit();
	}
}