function ConfirmDelete()
{
	var agree=confirm('Haluatko varmasti poistaa?');
	if(agree)
	{
		return true ;
	}
	return false ; 
}

function ConfirmDateFormat(date)
{
	with (entered)
	{
		first=value.indexOf("-");
		last=value.lastIndexOf("-");
		total=value.length;
		
		alert(date);
		if(first!=4 || last!=7){
			alert('päiväys väärässä formaatissa');
			return false;
		}

		return true;
	}
} 

}