<!--
function confirmSubmit(){
	var agree=confirm("Opravdu smazat ?");
	
	if (agree) return true ;
	else return false;
}
//-->