

function validateDate($str)
{
	return true;
}


function confirmDelete(url)
{
	if( confirm('Are you sure you want to delete this record?') ){
		window.location.href = url;
		return true;
	}
	
	return false;
}


function goTo(url)
{
	window.location.href = url;
	return true;
}
